2023-07-10 14:48:33 +02:00
|
|
|
.fr-fieldset__element
|
|
|
|
.fr-checkbox-group
|
|
|
|
= @form.check_box :value,
|
|
|
|
{ required: @champ.required?, id: @champ.input_id, checked: @champ.true?, aria: { describedby: @champ.describedby_id }, class: class_names('required' => @champ.required?)},
|
|
|
|
'true',
|
|
|
|
'false'
|
2023-08-17 17:18:32 +02:00
|
|
|
%label.fr-label{ for: @champ.input_id, id: @champ.labelledby_id }
|
2023-07-10 14:48:33 +02:00
|
|
|
= render EditableChamp::ChampLabelContentComponent.new form: @form, champ: @champ, seen_at: @seen_at
|
2023-08-17 17:18:32 +02:00
|
|
|
|