2022-08-12 10:45:04 +02:00
|
|
|
.dgfip-inputs
|
|
|
|
%div
|
|
|
|
= @form.label :numero_fiscal, t('.numero_fiscal_label')
|
|
|
|
%p.notice= t('.numero_fiscal_notice')
|
|
|
|
= @form.text_field :numero_fiscal,
|
2022-10-17 10:05:59 +02:00
|
|
|
required: @champ.required?,
|
2022-08-12 10:45:04 +02:00
|
|
|
aria: { describedby: @champ.describedby_id },
|
|
|
|
class: "width-33-desktop"
|
|
|
|
|
|
|
|
%div
|
|
|
|
= @form.label :reference_avis, t('.reference_avis_label')
|
|
|
|
%p.notice= t('.reference_avis_notice')
|
|
|
|
= @form.text_field :reference_avis,
|
2022-10-17 10:05:59 +02:00
|
|
|
required: @champ.required?,
|
2022-08-12 10:45:04 +02:00
|
|
|
aria: { describedby: @champ.describedby_id },
|
|
|
|
class: "width-33-desktop"
|