Files
nairobi/app/helpers/geozones_helper.rb
2016-01-13 13:07:03 +01:00

12 lines
238 B
Ruby

module GeozonesHelper
def geozone_name(geozonable)
geozonable.geozone ? geozonable.geozone.name : t("geozones.none")
end
def geozone_select_options
Geozone.all.order(name: :asc).collect { |g| [ g.name, g.id ] }
end
end