%= header do %> <%= link_to t("admin.budgets.index.new_link"), new_admin_budget_path %> <% end %> <%= render Admin::Budgets::HelpComponent.new("budgets") %> <%= render "shared/filter_subnav", i18n_namespace: "admin.budgets.index" %> <% if budgets.any? %>
| <%= t("admin.budgets.index.table_name") %> | <%= t("admin.budgets.index.table_phase") %> | <%= t("admin.budgets.index.table_duration") %> | <%= t("admin.actions.actions") %> |
|---|---|---|---|
| "> <% if budget.finished? %> <%= t("admin.budgets.index.table_completed") %> <% end %> <%= budget.name %> | <%= budget.current_phase.name %> <%= phase_progress_text(budget) %> | <%= dates(budget) %> <%= duration(budget) %> | <%= render Admin::Budgets::TableActionsComponent.new(budget) %> |