_notifications.rhtml
30 lines
| 1.2 KiB
| text/html+ruby
|
RhtmlLexer
|
r1033 | <% form_tag({:action => 'edit', :tab => 'notifications'}) do %> | ||
|
r330 | |||
|
r1033 | <div class="box tabular settings"> | ||
|
r931 | <p><label><%= l(:setting_mail_from) %></label> | ||
<%= text_field_tag 'settings[mail_from]', Setting.mail_from, :size => 60 %></p> | ||||
<p><label><%= l(:setting_bcc_recipients) %></label> | ||||
<%= check_box_tag 'settings[bcc_recipients]', 1, Setting.bcc_recipients? %> | ||||
<%= hidden_field_tag 'settings[bcc_recipients]', 0 %></p> | ||||
|
r1033 | </div> | ||
|
r931 | |||
|
r717 | <fieldset class="box"><legend><%=l(:text_select_mail_notifications)%></legend> | ||
<% @notifiables.each do |notifiable| %> | ||||
|
r931 | <label><%= check_box_tag 'settings[notified_events][]', notifiable, Setting.notified_events.include?(notifiable) %> | ||
|
r1129 | <%= l_or_humanize(notifiable) %></label><br /> | ||
|
r717 | <% end %> | ||
|
r1033 | <%= hidden_field_tag 'settings[notified_events][]', '' %> | ||
|
r845 | <p><%= check_all_links('mail-options-form') %></p> | ||
</fieldset> | ||||
|
r846 | <fieldset class="box"><legend><%= l(:setting_emails_footer) %></legend> | ||
|
r931 | <%= text_area_tag 'settings[emails_footer]', Setting.emails_footer, :class => 'wiki-edit', :rows => 5 %> | ||
|
r717 | </fieldset> | ||
|
r1033 | <div style="float:right;"> | ||
<%= link_to l(:label_send_test_email), :controller => 'admin', :action => 'test_email' %> | ||||
</div> | ||||
|
r717 | <%= submit_tag l(:button_save) %> | ||
<% end %> | ||||