2018-04-03 14:22:53 +02:00
|
|
|
- if params[:id] == 'closed_mail'
|
|
|
|
= render partial: 'admin/closed_mail_template_attestation_inconsistency_alert'
|
2017-01-24 14:36:43 +01:00
|
|
|
.white-back
|
|
|
|
%h3
|
2017-03-06 23:18:16 +01:00
|
|
|
= @mail_template.class.const_get(:DISPLAYED_NAME)
|
2017-01-24 14:36:43 +01:00
|
|
|
|
2017-03-06 16:52:07 +01:00
|
|
|
= simple_form_for @mail_template,
|
2017-04-04 15:28:39 +02:00
|
|
|
as: 'mail_template',
|
2017-05-27 00:52:32 +02:00
|
|
|
url: admin_procedure_mail_template_path(@procedure, @mail_template.class.const_get(:SLUG)),
|
2017-03-05 11:05:28 +01:00
|
|
|
method: :put do |f|
|
2017-01-24 14:36:43 +01:00
|
|
|
.row
|
|
|
|
.col-md-6
|
2018-01-08 17:26:13 +01:00
|
|
|
= f.input :subject, label: "Objet de l'email"
|
2017-04-06 19:10:25 +02:00
|
|
|
= f.input :body, label: "Corps de l'email", input_html: { class: 'wysihtml5' }
|
2017-01-24 14:36:43 +01:00
|
|
|
.text-right
|
|
|
|
= link_to "Annuler", admin_procedure_mail_templates_path(@procedure), class: "btn btn-default"
|
|
|
|
= f.button :submit, 'Mettre à jour', class: "btn-success"
|
|
|
|
|
|
|
|
.row
|
2017-05-03 11:50:02 +02:00
|
|
|
.col-md-12
|
2017-01-24 14:36:43 +01:00
|
|
|
%table.table
|
|
|
|
%tr
|
2017-05-03 11:50:02 +02:00
|
|
|
%th.col-md-3
|
2017-01-24 14:36:43 +01:00
|
|
|
Balise
|
|
|
|
%th
|
|
|
|
Description
|
2017-12-22 21:33:04 +01:00
|
|
|
- @mail_template.tags.each do |tag|
|
2017-01-24 14:36:43 +01:00
|
|
|
%tr
|
2018-03-14 16:16:18 +01:00
|
|
|
%td
|
2018-03-14 16:16:06 +01:00
|
|
|
%code{ style: "white-space: pre-wrap;" }
|
|
|
|
= "--#{tag[:libelle]}--"
|
2017-01-24 14:36:43 +01:00
|
|
|
%td
|
2017-05-27 00:43:47 +02:00
|
|
|
= tag[:description]
|