2020-03-05 14:20:19 +01:00
|
|
|
%fieldset.radios
|
|
|
|
%legend.mandatory-explanation
|
|
|
|
Sélectionnez une des valeurs
|
2017-07-25 14:33:03 +02:00
|
|
|
%label
|
2020-12-08 17:29:07 +01:00
|
|
|
= form.radio_button :value, Individual::GENDER_FEMALE
|
2020-12-08 21:30:54 +01:00
|
|
|
= t(Individual::GENDER_FEMALE, scope: 'activerecord.attributes.individual.gender_options')
|
2017-07-25 14:33:03 +02:00
|
|
|
|
|
|
|
%label
|
2020-12-08 17:29:07 +01:00
|
|
|
= form.radio_button :value, Individual::GENDER_MALE
|
2020-12-08 21:30:54 +01:00
|
|
|
= t('activerecord.attributes.individual.gender_options')[Individual::GENDER_MALE.to_sym] # GENDER_MALE contains a point letter
|