##// END OF EJS Templates
Adds a setting to choose which role is given to a non-admin user who creates a project (#1007)....
Adds a setting to choose which role is given to a non-admin user who creates a project (#1007). git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@2754 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r1941:6c54b0ba3b3f
r2655:52b5b2920329
Show More
_notifications.rhtml
40 lines | 1.5 KiB | text/html+ruby | RhtmlLexer
/ app / views / settings / _notifications.rhtml
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
Admin settings screen split to tabs....
r1033 <% 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
Email notifications are now sent as Blind carbon copy by default. This can be changed in email notifications settings (new setting added)....
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>
Nicolas Chuche
add plain text option for mail #2029...
r1930
<p><label><%= l(:setting_plain_text_mail) %></label>
<%= check_box_tag 'settings[plain_text_mail]', 1, Setting.plain_text_mail? %>
<%= hidden_field_tag 'settings[plain_text_mail]', 0 %></p>
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
Jean-Philippe Lang
Fixed: Check All / Uncheck All in Email Settings doesn't work (#1180)....
r1414 <fieldset class="box" id="notified_events"><legend><%=l(:text_select_mail_notifications)%></legend>
Jean-Philippe Lang
Mail notification options restored (default is: issue_added and issue_updated)....
r717 <% @notifiables.each do |notifiable| %>
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 <label><%= check_box_tag 'settings[notified_events][]', notifiable, Setting.notified_events.include?(notifiable) %>
Jean-Philippe Lang
Makes permission screens localized (#2070)....
r1941 <%= l_or_humanize(notifiable, :prefix => 'label_') %></label><br />
Jean-Philippe Lang
Mail notification options restored (default is: issue_added and issue_updated)....
r717 <% end %>
Jean-Philippe Lang
Admin settings screen split to tabs....
r1033 <%= hidden_field_tag 'settings[notified_events][]', '' %>
Jean-Philippe Lang
Fixed: Check All / Uncheck All in Email Settings doesn't work (#1180)....
r1414 <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>
Jean-Philippe Lang
Fixed flashes style for IE6....
r846 <fieldset class="box"><legend><%= l(:setting_emails_footer) %></legend>
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 <%= text_area_tag 'settings[emails_footer]', Setting.emails_footer, :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;">
<%= link_to l(:label_send_test_email), :controller => 'admin', :action => 'test_email' %>
</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 %>