##// END OF EJS Templates
Subproject name displayed on issue list, calendar and gantt (only for issues that belong to a subproject)....
Subproject name displayed on issue list, calendar and gantt (only for issues that belong to a subproject). git-svn-id: http://redmine.rubyforge.org/svn/trunk@484 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r370:7611f52faf67
r481:c1a18a28898f
Show More
mail_options.rhtml
25 lines | 733 B | text/html+ruby | RhtmlLexer
<h2><%=l(:field_mail_notification)%></h2>
<% form_tag({:action => 'mail_options'}, :id => 'mail_options_form') do %>
<div class="box">
<p><%=l(:text_select_mail_notifications)%></p>
<% actions = @actions.group_by {|p| p.group_id } %>
<% actions.keys.sort.each do |group_id| %>
<fieldset style="margin-top: 6px;"><legend><strong><%= l(Permission::GROUPS[group_id]) %></strong></legend>
<% actions[group_id].each do |p| %>
<div style="width:170px;float:left;"><%= check_box_tag "action_ids[]", p.id, p.mail_enabled? %>
<%= l(p.description.to_sym) %>
</div>
<% end %>
<div class="clear"></div>
</fieldset>
<% end %>
<br />
<p><%= check_all_links('mail_options_form') %></p>
</div>
<%= submit_tag l(:button_save) %>
<% end %>