Files
nairobi/app/helpers/budgets_helper.rb
2016-07-29 13:34:11 +02:00

11 lines
241 B
Ruby

module BudgetsHelper
def budget_phases_select_options
Budget::VALID_PHASES.map { |ph| [ t("budget.phase.#{ph}"), ph ] }
end
def budget_currency_symbol_select_options
Budget::CURRENCY_SYMBOLS.map { |cs| [ cs, cs ] }
end
end