diff options
author | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-10-21 14:10:07 +0000 |
---|---|---|
committer | Jean-Philippe Lang <jp_lang@yahoo.fr> | 2007-10-21 14:10:07 +0000 |
commit | a200e97667a7367945389b5b6934c4a04d33f750 (patch) | |
tree | 0c041032b1b17c9b8330faefb4695b36259abcf6 /app/views/admin | |
parent | 2ee11c9089f5390508dfb786b0cbb7c6030ae605 (diff) | |
download | redmine-a200e97667a7367945389b5b6934c4a04d33f750.tar.gz redmine-a200e97667a7367945389b5b6934c4a04d33f750.zip |
* Emails footer can now be customized from the admin interface (Admin -> Email notifications).
* Added html part to all email templates.
git-svn-id: http://redmine.rubyforge.org/svn/trunk@858 e93f8b46-1217-0410-a6f0-8f06a7374b81
Diffstat (limited to 'app/views/admin')
-rw-r--r-- | app/views/admin/mail_options.rhtml | 11 |
1 files changed, 7 insertions, 4 deletions
diff --git a/app/views/admin/mail_options.rhtml b/app/views/admin/mail_options.rhtml index 2f61af4fa..5f1fd9bb3 100644 --- a/app/views/admin/mail_options.rhtml +++ b/app/views/admin/mail_options.rhtml @@ -8,12 +8,15 @@ <fieldset class="box"><legend><%=l(:text_select_mail_notifications)%></legend> <% @notifiables.each do |notifiable| %> - <p><label><%= check_box_tag "notified_events[]", notifiable, Setting.notified_events.include?(notifiable) %> - <%= notifiable.humanize %></label></p> + <label><%= check_box_tag "notified_events[]", notifiable, Setting.notified_events.include?(notifiable) %> + <%= notifiable.humanize %></label><br /> <% end %> -<div class="clear"></div> +<p><%= check_all_links('mail-options-form') %></p> +</fieldset> + +<fieldset class="box"><legend>Emails footer</legend> +<%= text_area_tag 'emails_footer', Setting.emails_footer, :class => 'wiki-edit', :rows => 5 %> </fieldset> -<p><%= check_all_links('mail-options-form') %></p> <%= submit_tag l(:button_save) %> <% end %> |