app/views/manage/messages/_form.html.haml in hackathon_manager-0.2.0 vs app/views/manage/messages/_form.html.haml in hackathon_manager-0.3.0
- old
+ new
@@ -1,15 +1,15 @@
= simple_form_for @message, url: url_for(action: @message.new_record? ? "create" : "update", controller: "messages") do |f|
= f.error_notification
.form-inputs
= f.input :name
- = f.input :subject, hint: "All emails are from \"BrickHack\""
+ = f.input :subject, hint: "All emails are from <pre>#{html_escape(Rails.configuration.hackathon['email_from'])}</pre>".html_safe
= f.input :template, as: :select, collection: Message::POSSIBLE_TEMPLATES.map { |x| [x.titleize, x] }, include_blank: false
= f.input :recipients, as: :select, collection: Message::POSSIBLE_RECIPIENTS.invert, input_html: { class: "selectize", multiple: true }
= f.input :body, input_html: { rows: 10 }
%p
%small
- %em Markdown and HTML supported. codeRIT & BrickHack info will be appended to the email body.
+ %em Markdown and HTML supported.
.form-actions
= f.button :submit