Files
nairobi/app/helpers/geozones_helper.rb
2019-05-31 18:22:59 +02: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