##// END OF EJS Templates
Identifier is now frozen....
Identifier is now frozen. git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@10082 e93f8b46-1217-0410-a6f0-8f06a7374b81

File last commit:

r9885:6a2ca5e03427
r9899:8e1f7607ec6d
Show More
_mail_notifications.html.erb
31 lines | 1.1 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 %>
Toshi MARUYAMA
code layout cleanup app/views/users/_mail_notifications.html.erb...
r9552 <p>
<% @user.projects.each do |project| %>
<label>
<%= check_box_tag(
'notified_project_ids[]',
project.id,
@user.notified_projects_ids.include?(project.id)
) %>
<%= h(project.name) %>
</label>
<br />
<% end %>
</p>
<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 %>
Toshi MARUYAMA
code layout cleanup app/views/users/_mail_notifications.html.erb...
r9552 <p>
<label>
<%= l(:label_user_mail_no_self_notified) %>
<%= check_box_tag 'no_self_notified', 1, @user.pref[:no_self_notified] %>
</label>
</p>