2023-12-19 12:51:30 +01:00
|
|
|
|
= render partial: 'administrateurs/breadcrumbs',
|
|
|
|
|
locals: { steps: [['Démarches', admin_procedures_path],
|
|
|
|
|
[@procedure.libelle.truncate_words(10), admin_procedure_path(@procedure)],
|
|
|
|
|
['Attestation']] }
|
|
|
|
|
|
2023-12-22 14:13:20 +01:00
|
|
|
|
= render NestedForms::FormOwnerComponent.new
|
2023-12-22 14:24:39 +01:00
|
|
|
|
= form_for @attestation_template, url: admin_procedure_attestation_template_v2_path(@procedure), html: { multipart: true },
|
|
|
|
|
data: { turbo: 'true',
|
|
|
|
|
controller: 'autosubmit attestation',
|
|
|
|
|
attestation_logo_attachment_official_label_value: AttestationTemplate.human_attribute_name(:logo_additional),
|
|
|
|
|
attestation_logo_attachment_free_label_value: AttestationTemplate.human_attribute_name(:logo) } do |f|
|
|
|
|
|
|
|
|
|
|
#attestation-edit.fr-container.fr-mt-4w{ data: { controller: 'tiptap' } }
|
|
|
|
|
.fr-grid-row.fr-grid-row--gutters
|
|
|
|
|
.fr-col-12.fr-col-md-8
|
2023-12-19 12:51:30 +01:00
|
|
|
|
%fieldset.fr-fieldset{ aria: { labelledby: 'edit-attestation' } }
|
|
|
|
|
%legend.fr-fieldset__legend#edit-attestation
|
|
|
|
|
%h1.fr-h2 Attestation
|
|
|
|
|
%p.fr-text--regular
|
|
|
|
|
L’attestation est émise au moment où un dossier est accepté, elle est jointe à l’email d’accusé d’acceptation.
|
|
|
|
|
Elle est également disponible au téléchargement depuis l’espace personnel de l’usager.
|
|
|
|
|
|
2023-12-22 14:24:39 +01:00
|
|
|
|
.fr-fieldset__element
|
|
|
|
|
.fr-toggle
|
|
|
|
|
= f.check_box :official_layout, class: "fr-toggle-input", id: dom_id(@attestation_template, :official_layout), data: { "attestation-target": "layoutToggle"}
|
|
|
|
|
%label.fr-toggle__label{ for: dom_id(@attestation_template, :official_layout), data: { fr_checked_label: "Activé", fr_unchecked_label: "Désactivé" } }
|
|
|
|
|
Je souhaite générer une attestation à la charte de l’état (logo avec Marianne)
|
|
|
|
|
|
2023-12-19 12:51:30 +01:00
|
|
|
|
.fr-fieldset__element.fr-mt-2w
|
|
|
|
|
%h6 En-tête
|
|
|
|
|
|
2023-12-22 14:24:39 +01:00
|
|
|
|
.fr-fieldset__element{ class: class_names("hidden" => !@attestation_template.official_layout?), data: { "attestation-target": 'logoMarianneLabelFieldset'} }
|
2024-01-10 17:24:36 +01:00
|
|
|
|
= render Dsfr::InputComponent.new(form: f, attribute: :label_logo, input_type: :text_area, required: false, opts: { rows: 3, data: { controller: :textarea, textarea_max_rows_value: 3 } }) do |c|
|
2023-12-19 12:51:30 +01:00
|
|
|
|
- c.with_hint { "Exemple: Ministère de la Mer. 3 lignes maximum" }
|
|
|
|
|
|
2023-12-22 14:24:39 +01:00
|
|
|
|
.fr-fieldset__element{ data: { attestation_target: 'logoAttachmentFieldset' } }
|
|
|
|
|
%label.fr-label{ for: field_id(@attestation_template, :logo) }
|
|
|
|
|
- if @attestation_template.official_layout?
|
|
|
|
|
= AttestationTemplate.human_attribute_name(:logo_additional)
|
|
|
|
|
- else
|
|
|
|
|
= AttestationTemplate.human_attribute_name(:logo)
|
|
|
|
|
|
|
|
|
|
%span.fr-hint-text
|
|
|
|
|
Dimensions conseillées : au minimum 500px de largeur ou de hauteur.
|
|
|
|
|
|
2023-12-22 14:13:20 +01:00
|
|
|
|
%div{ id: dom_id(@attestation_template, :logo_attachment) }
|
|
|
|
|
= render Attachment::EditComponent.new(attached_file: @attestation_template.logo, direct_upload: false)
|
|
|
|
|
|
2023-12-19 12:51:30 +01:00
|
|
|
|
.fr-fieldset__element
|
2024-01-10 17:24:36 +01:00
|
|
|
|
= render Dsfr::InputComponent.new(form: f, attribute: :label_direction, input_type: :text_area, required: false, opts: { rows: 2, data: { controller: :textarea, textarea_max_rows_value: 2 } }) do |c|
|
2023-12-19 12:51:30 +01:00
|
|
|
|
- c.with_hint { "Exemple: Direction interministérielle du numérique. 2 lignes maximum" }
|
|
|
|
|
|
|
|
|
|
.fr-fieldset__element.fr-mt-2w
|
|
|
|
|
%label.fr-label.fr-h6
|
|
|
|
|
= AttestationTemplate.human_attribute_name :body
|
|
|
|
|
= render EditableChamp::AsteriskMandatoryComponent.new
|
|
|
|
|
|
|
|
|
|
.editor.mt-2{ data: { tiptap_target: 'editor' } }
|
|
|
|
|
= f.hidden_field :tiptap_body, data: { tiptap_target: 'input' }
|
|
|
|
|
|
|
|
|
|
.fr-fieldset__element
|
|
|
|
|
.flex.flex-gap-2
|
|
|
|
|
- @buttons.each do |buttons|
|
|
|
|
|
.flex.flex-gap-1
|
|
|
|
|
- buttons.each do |(label, action, icon)|
|
|
|
|
|
%button.fr-btn.fr-btn--secondary.fr-btn--sm{ type: 'button', title: label, class: "fr-icon-#{icon}", data: { action: 'click->tiptap#menuButton', tiptap_target: 'button', tiptap_action: action } }
|
|
|
|
|
= label
|
|
|
|
|
|
|
|
|
|
.fr-fieldset__element
|
|
|
|
|
%ul.fr-tags-group
|
|
|
|
|
- @attestation_template.tags.each do |tag|
|
|
|
|
|
%li
|
|
|
|
|
%button.fr-tag.fr-tag--sm{ title: tag[:description], data: { action: 'click->tiptap#insertTag', tiptap_target: 'tag', tag_id: tag[:id], tag_label: tag[:libelle] } }
|
|
|
|
|
= tag[:libelle]
|
|
|
|
|
|
|
|
|
|
.fr-fieldset__element.fr-mt-2w
|
|
|
|
|
%h6 Pied de page
|
|
|
|
|
|
|
|
|
|
.fr-fieldset__element
|
|
|
|
|
%label.fr-label{ for: field_id(@attestation_template, :signature) } Tampon ou signature
|
|
|
|
|
%span.fr-hint-text
|
|
|
|
|
Dimensions conseillées : au minimum 500px de largeur ou de hauteur.
|
2023-12-22 14:13:20 +01:00
|
|
|
|
|
|
|
|
|
%div{ id: dom_id(@attestation_template, :signature_attachment) }
|
|
|
|
|
= render Attachment::EditComponent.new(attached_file: @attestation_template.signature, direct_upload: false)
|
2023-12-19 12:51:30 +01:00
|
|
|
|
|
|
|
|
|
.fr-fieldset__element
|
2024-01-10 17:24:36 +01:00
|
|
|
|
= render Dsfr::InputComponent.new(form: f, attribute: :footer, input_type: :text_area, required: false, opts: { rows: 3, data: { controller: :textarea, textarea_max_rows_value: 3 } }) do |c|
|
2023-12-19 12:51:30 +01:00
|
|
|
|
- c.with_hint { "Exemple: 20 avenue de Ségur, 75007 Paris" }
|
|
|
|
|
|
2023-12-22 14:24:39 +01:00
|
|
|
|
.fr-col-12.fr-col-md-4.fr-background-alt--blue-france
|
2024-01-10 18:17:12 +01:00
|
|
|
|
= image_tag("attestation-template-schema-official.jpg", class: "attestation-schema", alt: "Schéma d’une attestation au modèle de l’état")
|
2023-12-22 14:24:39 +01:00
|
|
|
|
|
2023-12-22 14:14:41 +01:00
|
|
|
|
|
|
|
|
|
.padded-fixed-footer
|
|
|
|
|
.fixed-footer
|
|
|
|
|
.fr-container
|
|
|
|
|
.fr-grid-row
|
|
|
|
|
.fr-col-11
|
|
|
|
|
%ul.fr-btns-group.fr-btns-group--inline-md
|
|
|
|
|
%li
|
|
|
|
|
= f.button 'Enregistrer', class: 'fr-btn'
|
|
|
|
|
%li
|
|
|
|
|
= link_to 'Prévisualiser l’attestation PDF', admin_procedure_attestation_template_v2_path(@procedure), class: 'fr-btn fr-btn--secondary', target: '_blank', rel: 'noopener'
|
|
|
|
|
%li
|
|
|
|
|
= link_to 'Annuler', admin_procedure_path(id: @procedure), class: 'fr-btn fr-btn--tertiary-no-outline', data: { confirm: 'Êtes-vous sûr de vouloir annuler les modifications effectuées ?'}
|
|
|
|
|
.fr-col-1
|
|
|
|
|
.fr-toggle
|
|
|
|
|
= f.check_box :activated, class: "fr-toggle-input", id: dom_id(@attestation_template, :activated)
|
|
|
|
|
%label.fr-toggle__label{ for: dom_id(@attestation_template, :activated), data: { fr_checked_label: "Activé", fr_unchecked_label: "Désactivé" } }
|