2017-07-01 19:02:46 +02:00
|
|
|
- if selector_region.regions.present? || selector_region.url.blank?
|
2019-05-03 11:35:24 +02:00
|
|
|
.region{ title: selector_region.code }
|
2017-07-01 19:02:46 +02:00
|
|
|
= f.radio_button :region_id, selector_region.id
|
|
|
|
= f.label "region_id_#{selector_region.id}" do
|
2017-09-07 22:36:53 +02:00
|
|
|
- if selector_region.code.present?
|
|
|
|
= flag_icon selector_region.code.downcase
|
2019-05-03 11:35:24 +02:00
|
|
|
%span.name
|
|
|
|
= t selector_region.code, scope: :countries,
|
|
|
|
default: selector_region.name
|
2017-09-07 22:36:53 +02:00
|
|
|
- else
|
|
|
|
%em.fa.fa-map
|
2019-05-03 11:35:24 +02:00
|
|
|
%span.name
|
|
|
|
= t selector_region, scope: :countries, default: selector_region
|
2017-09-02 20:57:10 +02:00
|
|
|
- if selector_region.regions.present?
|
2019-05-03 11:35:24 +02:00
|
|
|
%em.fa.fa-chevron-right
|
2017-07-01 19:02:46 +02:00
|
|
|
- if selector_region.regions.present?
|
|
|
|
.radios
|
|
|
|
= f.collection_radio_buttons :region_id,
|
2019-05-03 11:35:24 +02:00
|
|
|
Region.where(region: selector_region), :id, :name,
|
|
|
|
include_hidden: false do |b|
|
2019-05-02 12:50:07 +02:00
|
|
|
= b.radio_button
|
|
|
|
= b.label { t(b.text, scope: :countries, default: b.text) }
|