Files
nairobi/app/components/admin/budgets_wizard/phases/index_component.rb
2021-06-08 18:45:55 +02:00

19 lines
377 B
Ruby

class Admin::BudgetsWizard::Phases::IndexComponent < ApplicationComponent
include Header
attr_reader :budget
def initialize(budget)
@budget = budget
end
def title
t("admin.budget_phases.index.title", budget: budget.name)
end
private
def back_link_path
admin_budgets_wizard_budget_group_headings_path(budget, budget.groups.first)
end
end