b27218c7c4
- When changing emails - When changing attestation - As a safety net, on summary page
33 lines
1 KiB
Text
33 lines
1 KiB
Text
- if params[:id] == 'closed_mail'
|
|
= render partial: 'admin/closed_mail_template_attestation_inconsistency_alert'
|
|
.white-back
|
|
%h3
|
|
= @mail_template.class.const_get(:DISPLAYED_NAME)
|
|
|
|
= simple_form_for @mail_template,
|
|
as: 'mail_template',
|
|
url: admin_procedure_mail_template_path(@procedure, @mail_template.class.const_get(:SLUG)),
|
|
method: :put do |f|
|
|
.row
|
|
.col-md-6
|
|
= f.input :subject, label: "Objet de l'email"
|
|
= f.input :body, label: "Corps de l'email", input_html: { class: 'wysihtml5' }
|
|
.text-right
|
|
= link_to "Annuler", admin_procedure_mail_templates_path(@procedure), class: "btn btn-default"
|
|
= f.button :submit, 'Mettre à jour', class: "btn-success"
|
|
|
|
.row
|
|
.col-md-12
|
|
%table.table
|
|
%tr
|
|
%th.col-md-3
|
|
Balise
|
|
%th
|
|
Description
|
|
- @mail_template.tags.each do |tag|
|
|
%tr
|
|
%td
|
|
%code{ style: "white-space: pre-wrap;" }
|
|
= "--#{tag[:libelle]}--"
|
|
%td
|
|
= tag[:description]
|