##// END OF EJS Templates
Merged r14795 (#21150)....
Merged r14795 (#21150). git-svn-id: http://svn.redmine.org/redmine/branches/2.6-stable@14839 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r14020:dc724dfc514e
r14457:88fcb8c3f9cf
Show More
_notifications.html.erb
42 lines | 1.4 KiB | text/plain | TextLexer
/ app / views / settings / _notifications.html.erb
Jean-Philippe Lang
Email delivery configuration moved to an unversioned YAML file (config/email.yml, see the sample file) (#1412)....
r1611 <% if @deliveries %>
Jean-Philippe Lang
Merged rails-3.2 branch....
r9346 <%= form_tag({:action => 'edit', :tab => 'notifications'}) do %>
Jean-Philippe Lang
added svn:eol-style native property on /app files...
r330
Jean-Philippe Lang
Admin settings screen split to tabs....
r1033 <div class="box tabular settings">
Jean-Philippe Lang
Adds helpers for setting field tags....
r3084 <p><%= setting_text_field :mail_from, :size => 60 %></p>
<p><%= setting_check_box :bcc_recipients %></p>
<p><%= setting_check_box :plain_text_mail %></p>
Eric Davis
Add a default mail notification setting for new users...
r4105
Jean-Philippe Lang
Do not show "for only project I select" notification option on application settings form (#7294)....
r4610 <p><%= setting_select(:default_notification_option, User.valid_notification_options.collect {|o| [l(o.last), o.first.to_s]}) %></p>
Eric Davis
Add a default mail notification setting for new users...
r4105
Jean-Philippe Lang
Admin settings screen split to tabs....
r1033 </div>
Jean-Philippe Lang
Email notifications are now sent as Blind carbon copy by default. This can be changed in email notifications settings (new setting added)....
r931
Eric Davis
Changed the notifications to use a hierarchy UI...
r4108 <fieldset class="box" id="notified_events"><legend><%=l(:text_select_mail_notifications)%></legend>
<%= hidden_field_tag 'settings[notified_events][]', '' %>
<% @notifiables.each do |notifiable| %>
<%= notification_field notifiable %>
<br />
<% end %>
<p><%= check_all_links('notified_events') %></p>
Jean-Philippe Lang
* Emails footer can now be customized from the admin interface (Admin -> Email notifications)....
r845 </fieldset>
Eric Davis
Add a Email Header setting. Useful for adding delimiters to every email....
r4248 <fieldset class="box"><legend><%= l(:setting_emails_header) %></legend>
<%= setting_text_area :emails_header, :label => false, :class => 'wiki-edit', :rows => 5 %>
</fieldset>
Jean-Philippe Lang
Fixed flashes style for IE6....
r846 <fieldset class="box"><legend><%= l(:setting_emails_footer) %></legend>
Jean-Philippe Lang
Adds helpers for setting field tags....
r3084 <%= setting_text_area :emails_footer, :label => false, :class => 'wiki-edit', :rows => 5 %>
Jean-Philippe Lang
Mail notification options restored (default is: issue_added and issue_updated)....
r717 </fieldset>
Jean-Philippe Lang
Admin settings screen split to tabs....
r1033 <div style="float:right;">
Jean-Philippe Lang
Merged r14389 (#20203)....
r14020 <%= link_to l(:label_send_test_email), { :controller => 'admin', :action => 'test_email' }, :method => :post %>
Jean-Philippe Lang
Admin settings screen split to tabs....
r1033 </div>
Jean-Philippe Lang
Mail notification options restored (default is: issue_added and issue_updated)....
r717 <%= submit_tag l(:button_save) %>
<% end %>
Jean-Philippe Lang
Email delivery configuration moved to an unversioned YAML file (config/email.yml, see the sample file) (#1412)....
r1611 <% else %>
<div class="nodata">
<%= simple_format(l(:text_email_delivery_not_configured)) %>
</div>
<% end %>