rosa-build/app/helpers/statistics_helper.rb

10 lines
194 B
Ruby
Raw Permalink Normal View History

2014-10-07 21:16:48 +01:00
module StatisticsHelper
def statistics_range_options
options_for_select(
2014-10-08 22:01:03 +01:00
StatisticsController::RANGES.map { |r| [I18n.t(r, scope: 'statistics.helper.period'), r] }
2014-10-07 21:16:48 +01:00
)
end
end