comparison .svn/pristine/c1/c10e9a1142bb5d5518887fd1a88ba99ec4614876.svn-base @ 1296:038ba2d95de8 redmine-2.2

Fix redmine-2.2 branch update (add missing svn files)
author Chris Cannam
date Fri, 14 Jun 2013 09:05:06 +0100
parents
children
comparison
equal deleted inserted replaced
1294:3e4c3460b6ca 1296:038ba2d95de8
1 <p>
2 <%= label_tag "user_mail_notification", l(:description_user_mail_notification), :class => "hidden-for-sighted" %>
3 <%= select_tag(
4 'user[mail_notification]',
5 options_for_select(
6 user_mail_notification_options(@user), @user.mail_notification),
7 :onchange => 'if (this.value == "selected") {$("#notified-projects").show();} else {$("#notified-projects").hide();}'
8 ) %>
9 </p>
10 <%= content_tag 'div', :id => 'notified-projects', :style => (@user.mail_notification == 'selected' ? '' : 'display:none;') do %>
11 <%= render_project_nested_lists(@user.projects) do |project|
12 content_tag('label',
13 check_box_tag(
14 'notified_project_ids[]',
15 project.id,
16 @user.notified_projects_ids.include?(project.id)
17 ) + ' ' + h(project.name)
18 )
19 end %>
20 <p><em class="info"><%= l(:text_user_mail_option) %></em></p>
21 <% end %>
22 <p>
23 <label>
24 <%= l(:label_user_mail_no_self_notified) %>
25 <%= check_box_tag 'no_self_notified', 1, @user.pref[:no_self_notified] %>
26 </label>
27 </p>