##// END OF EJS Templates
Lists can be reordered with drag and drop (#12909)....
Lists can be reordered with drag and drop (#12909). git-svn-id: http://svn.redmine.org/redmine/trunk@15336 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r12006:711982b7b316
r14954:42b5c332b2c2
Show More
_mail_notifications.html.erb
30 lines | 1.2 KiB | text/plain | TextLexer
/ app / views / users / _mail_notifications.html.erb
Eric Davis
Allow admins to edit user's email notifications and preferences. #3503...
r4109 <p>
Toshi MARUYAMA
[#9489] added invisible label for mail notification, linked label where possible...
r7572 <%= label_tag "user_mail_notification", l(:description_user_mail_notification), :class => "hidden-for-sighted" %>
Toshi MARUYAMA
code layout cleanup app/views/users/_mail_notifications.html.erb...
r9552 <%= select_tag(
'user[mail_notification]',
options_for_select(
user_mail_notification_options(@user), @user.mail_notification),
Jean-Philippe Lang
JQuery in, Prototype/Scriptaculous out (#11445)....
r9885 :onchange => 'if (this.value == "selected") {$("#notified-projects").show();} else {$("#notified-projects").hide();}'
Toshi MARUYAMA
code layout cleanup app/views/users/_mail_notifications.html.erb...
r9552 ) %>
Eric Davis
Allow admins to edit user's email notifications and preferences. #3503...
r4109 </p>
Toshi MARUYAMA
fix project list is not shown on Email notifications (#11032)...
r9551 <%= content_tag 'div', :id => 'notified-projects', :style => (@user.mail_notification == 'selected' ? '' : 'display:none;') do %>
Jean-Philippe Lang
Removed p around ul....
r10007 <%= render_project_nested_lists(@user.projects) do |project|
content_tag('label',
check_box_tag(
Jean-Philippe Lang
Update notified_project_ids while saving record....
r11610 'user[notified_project_ids][]',
Jean-Philippe Lang
Removed p around ul....
r10007 project.id,
Jean-Philippe Lang
Prevents duplicate element ids (#15191)....
r12006 @user.notified_projects_ids.include?(project.id),
:id => nil
Jean-Philippe Lang
Removed p around ul....
r10007 ) + ' ' + h(project.name)
)
end %>
Jean-Philippe Lang
Update notified_project_ids while saving record....
r11610 <%= hidden_field_tag 'user[notified_project_ids][]', '' %>
Toshi MARUYAMA
code layout cleanup app/views/users/_mail_notifications.html.erb...
r9552 <p><em class="info"><%= l(:text_user_mail_option) %></em></p>
Eric Davis
Allow admins to edit user's email notifications and preferences. #3503...
r4109 <% end %>
Jean-Philippe Lang
Fixed that locking and unlocking a user resets the email notification checkbox (#14020)....
r11609
<%= fields_for :pref, @user.pref do |pref_fields| %>
Toshi MARUYAMA
code layout cleanup app/views/users/_mail_notifications.html.erb...
r9552 <p>
Jean-Philippe Lang
Fixed that locking and unlocking a user resets the email notification checkbox (#14020)....
r11609 <%= pref_fields.check_box :no_self_notified %>
<label for="pref_no_self_notified"><%= l(:label_user_mail_no_self_notified) %></label>
Toshi MARUYAMA
code layout cleanup app/views/users/_mail_notifications.html.erb...
r9552 </p>
Jean-Philippe Lang
Fixed that locking and unlocking a user resets the email notification checkbox (#14020)....
r11609 <% end %>