2022-12-15 13:08:20 +01:00
|
|
|
|
= render Dsfr::InputComponent.new(form: f, attribute: :title, input_type: :text_field, opts: {})
|
2020-07-29 12:19:20 +02:00
|
|
|
|
|
2022-12-15 13:08:20 +01:00
|
|
|
|
= render Dsfr::InputComponent.new(form: f, attribute: :body, input_type: :text_area, opts: { rows: '6', placeholder: 'Description de la démarche, destinataires, etc. '})
|
2020-07-29 12:19:20 +02:00
|
|
|
|
|
2022-12-15 17:08:24 +01:00
|
|
|
|
#tags-table.clearfix.fr-mt-3w
|
|
|
|
|
%h2.fr-h3
|
2020-07-29 12:19:20 +02:00
|
|
|
|
Insérer une balise
|
2022-12-15 17:08:24 +01:00
|
|
|
|
|
|
|
|
|
= render Dsfr::AlertComponent.new(state: :info, title: "Balises sur le conditionnel", heading_level: 'h3') do |c|
|
|
|
|
|
- c.body do
|
|
|
|
|
Les balises pour les champs conditionnés ne sont pour le moment pas supportées.
|
|
|
|
|
|
|
|
|
|
%p.notice.fr-mt-3w
|
2020-07-29 12:19:20 +02:00
|
|
|
|
Copiez-collez les balises ci-dessous pour afficher automatiquement l’information souhaitée.
|
|
|
|
|
.head
|
|
|
|
|
.tag Balise
|
|
|
|
|
.description Description
|
|
|
|
|
.items
|
|
|
|
|
- @attestation_template.tags.each do |tag|
|
|
|
|
|
.item
|
|
|
|
|
%code.tag{ style: "white-space: pre-wrap;" }
|
|
|
|
|
= "--#{tag[:libelle]}--"
|
|
|
|
|
.description
|
|
|
|
|
= tag[:description]
|
|
|
|
|
|
|
|
|
|
%h3.header-subsection Logo de l'attestation
|
2023-09-21 17:58:01 +02:00
|
|
|
|
%p.fr-text--sm.fr-text-mention--grey.fr-mb-0
|
|
|
|
|
Dimensions conseillées : au minimum 500px de largeur ou de hauteur.
|
2022-11-17 19:18:58 +01:00
|
|
|
|
= render Attachment::EditComponent.new(attached_file: @attestation_template.logo, direct_upload: false)
|
2020-07-29 12:19:20 +02:00
|
|
|
|
|
|
|
|
|
|
2023-09-21 17:58:01 +02:00
|
|
|
|
%h3.header-subsection.fr-mt-5w Tampon de l'attestation
|
|
|
|
|
%p.fr-text--sm.fr-text-mention--grey.fr-mb-0
|
|
|
|
|
Dimensions conseillées : au minimum 500px de largeur ou de hauteur.
|
2022-11-17 19:18:58 +01:00
|
|
|
|
= render Attachment::EditComponent.new(attached_file: @attestation_template.signature, direct_upload: false)
|
2020-07-29 12:19:20 +02:00
|
|
|
|
|
|
|
|
|
|
2023-09-21 17:58:01 +02:00
|
|
|
|
- if @attestation_template.procedure.routing_enabled?
|
|
|
|
|
%p.fr-text--sm.fr-text-mention--grey
|
|
|
|
|
À noter : chaque groupe instructeur peut apposer son propre tampon à la place de celui-ci.
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
.fr-mt-4w
|
|
|
|
|
= render Dsfr::InputComponent.new(form: f, attribute: :footer, input_type: :text_field, opts: { maxlength: 190, size: nil }, required: false)
|
|
|
|
|
|