2020-07-29 12:19:20 +02:00
|
|
|
|
= f.label :title do
|
|
|
|
|
Titre de l'attestation
|
|
|
|
|
%span.mandatory *
|
2021-05-26 15:09:23 +02:00
|
|
|
|
= f.text_field :title, class: 'form-control', placeholder: 'Titre de l’attestation'
|
2020-07-29 12:19:20 +02:00
|
|
|
|
|
|
|
|
|
= f.label :body do
|
|
|
|
|
Corps du document
|
|
|
|
|
%span.mandatory *
|
|
|
|
|
= f.text_area :body, rows: '6', placeholder: 'Description de la démarche, destinataires, etc. ', class: 'form-control'
|
|
|
|
|
|
|
|
|
|
#tags-table
|
|
|
|
|
%h2.add-tag-title
|
|
|
|
|
Insérer une balise
|
|
|
|
|
%p.notice
|
|
|
|
|
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
|
2022-06-16 15:51:45 +02:00
|
|
|
|
= render Attachment::EditComponent.new(form: f, attached_file: @attestation_template.logo, direct_upload: false, user_can_destroy: true)
|
2020-07-29 12:19:20 +02:00
|
|
|
|
|
|
|
|
|
%p.notice
|
|
|
|
|
Formats acceptés : JPG / JPEG / PNG.
|
|
|
|
|
%br
|
|
|
|
|
Dimensions conseillées : au minimum 500 px de largeur ou de hauteur, poids maximum : 0,5 Mo.
|
|
|
|
|
|
|
|
|
|
%h3.header-subsection Tampon de l'attestation
|
2022-06-16 15:51:45 +02:00
|
|
|
|
= render Attachment::EditComponent.new(form: f, attached_file: @attestation_template.signature, direct_upload: false, user_can_destroy: true)
|
2020-07-29 12:19:20 +02:00
|
|
|
|
|
|
|
|
|
%p.notice
|
|
|
|
|
Formats acceptés : JPG / JPEG / PNG.
|
|
|
|
|
%br
|
|
|
|
|
Dimensions conseillées : au minimum 500 px de largeur ou de hauteur, poids maximum : 0,5 Mo.
|
|
|
|
|
|
|
|
|
|
= f.label :footer do
|
|
|
|
|
Pied de page
|
2022-07-27 14:26:00 +02:00
|
|
|
|
= f.text_field :footer, class: 'form-control', maxlength: 190, size: nil
|