2021-11-24 17:30:35 +01:00
|
|
|
.dgfip-inputs
|
|
|
|
%div
|
|
|
|
= form.label :numero_fiscal, t('.numero_fiscal_label')
|
|
|
|
%p.notice= t('.numero_fiscal_notice')
|
|
|
|
= form.text_field :numero_fiscal,
|
|
|
|
required: champ.mandatory?,
|
|
|
|
size: 14,
|
2022-01-05 11:44:07 +01:00
|
|
|
aria: { describedby: champ.describedby_id }
|
2021-11-24 17:30:35 +01:00
|
|
|
|
|
|
|
%div
|
|
|
|
= form.label :reference_avis, t('.reference_avis_label')
|
|
|
|
%p.notice= t('.reference_avis_notice')
|
|
|
|
= form.text_field :reference_avis,
|
|
|
|
size: 14,
|
|
|
|
required: champ.mandatory?,
|
2022-01-05 11:44:07 +01:00
|
|
|
aria: { describedby: champ.describedby_id }
|