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
|
|
|
|
= f.input :object, 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-05-27 00:43:47 +02:00
|
|
|
- @mail_template.class.const_get(:ALLOWED_TAGS).each do |tag|
|
2017-01-24 14:36:43 +01:00
|
|
|
%tr
|
|
|
|
%td.center
|
2017-12-19 13:38:31 +01:00
|
|
|
= "--#{tag[:libelle]}--"
|
2017-01-24 14:36:43 +01:00
|
|
|
%td
|
2017-05-27 00:43:47 +02:00
|
|
|
= tag[:description]
|