##// END OF EJS Templates
Content of projects/add_issue.rhtml and issues/edit.rhtml moved to a shared partial....
Content of projects/add_issue.rhtml and issues/edit.rhtml moved to a shared partial. git-svn-id: http://redmine.rubyforge.org/svn/trunk@811 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r717:23264ec3eb8e
r800:75c4c4f6b3fa
Show More
mail_options.rhtml
19 lines | 633 B | text/html+ruby | RhtmlLexer
<div class="contextual">
<%= link_to l(:label_send_test_email), :action => 'test_email' %>
</div>
<h2><%=l(:field_mail_notification)%></h2>
<% form_tag({:action => 'mail_options'}, :id => 'mail-options-form') do %>
<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>
<% end %>
<div class="clear"></div>
</fieldset>
<p><%= check_all_links('mail-options-form') %></p>
<%= submit_tag l(:button_save) %>
<% end %>