demarches-normaliennes/app/views/shared/dossiers/editable_champs/_siret.html.haml

13 lines
567 B
Text
Raw Normal View History

2018-04-03 17:53:14 +02:00
= form.text_field :value,
id: champ.input_id,
aria: { describedby: champ.describedby_id },
2018-04-03 17:53:14 +02:00
placeholder: champ.libelle,
data: { controller: 'turbo-input', turbo_input_url_value: champs_siret_path(champ.id) },
required: champ.mandatory?,
pattern: "[0-9]{14}",
title: "Le numéro de SIRET doit comporter exactement 14 chiffres"
2019-08-14 13:11:36 +02:00
.spinner.right.hidden
.siret-info{ id: dom_id(champ, :siret_info) }
2018-04-03 17:53:14 +02:00
- if champ.etablissement.present?
= render partial: 'shared/dossiers/editable_champs/etablissement_titre', locals: { etablissement: champ.etablissement }