<%= t("admin.budgets.index.title") %>

<%= link_to t("admin.budgets.index.new_link"), new_admin_budget_path, class: "button float-right margin-right" %> <%= render 'shared/filter_subnav', i18n_namespace: "admin.budgets.index" %>

<%= page_entries_info @budgets %>

<% @budgets.each do |budget| %> <% end %>
<%= t("admin.budgets.index.table_name") %> <%= t("admin.budgets.index.table_phase") %> <%= t("admin.budgets.index.table_investments") %> <%= t("admin.budgets.index.table_edit_groups") %> <%= t("admin.budgets.index.table_edit_budget") %>
<%= budget.name %> <%= t("budgets.phase.#{budget.phase}") %> <%= link_to t("admin.budgets.index.budget_investments"), admin_budget_budget_investments_path(budget_id: budget.id) %> <%= link_to t("admin.budgets.index.edit_groups"), admin_budget_path(budget) %> <%= link_to t("admin.budgets.index.edit_budget"), edit_admin_budget_path(budget) %>
<%= paginate @budgets %>