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

11 lines
545 B
Text
Raw Normal View History

2018-04-03 17:53:14 +02:00
= form.text_field :value,
placeholder: champ.libelle,
2018-09-06 19:23:27 +02:00
data: { remote: true, debounce: true, url: champs_siret_path(form.index), params: { champ_id: champ&.id }.to_query, spinner: true },
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{ class: "siret-info-#{form.index}" }
2018-04-03 17:53:14 +02:00
- if champ.etablissement.present?
= render partial: 'shared/dossiers/editable_champs/etablissement_titre', locals: { etablissement: champ.etablissement }