demarches-normaliennes/app/views/admin/mail_templates/edit.html.haml

31 lines
912 B
Text
Raw Normal View History

.white-back
%h3
= @mail_template.class.const_get(:DISPLAYED_NAME)
2017-03-06 16:52:07 +01:00
= simple_form_for @mail_template,
2017-04-04 15:28:39 +02:00
as: 'mail_template',
url: admin_procedure_mail_template_path(@procedure, @mail_template.class.slug),
method: :put do |f|
.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' }
.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.class.const_get(:ALLOWED_TAGS).each do |tag|
%tr
%td.center
= "--#{tag[:name]}--"
%td
= tag[:description]