17 lines
513 B
Text
17 lines
513 B
Text
|
.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,
|
||
|
aria: { describedby: describedby_id(champ) }
|
||
|
|
||
|
%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?,
|
||
|
aria: { describedby: describedby_id(champ) }
|