##// END OF EJS Templates
Removed p around ul....
Jean-Philippe Lang -
r10007:32fcdff69fa3
parent child
Show More
@@ -1,29 +1,27
1 <p>
1 <p>
2 <%= label_tag "user_mail_notification", l(:description_user_mail_notification), :class => "hidden-for-sighted" %>
2 <%= label_tag "user_mail_notification", l(:description_user_mail_notification), :class => "hidden-for-sighted" %>
3 <%= select_tag(
3 <%= select_tag(
4 'user[mail_notification]',
4 'user[mail_notification]',
5 options_for_select(
5 options_for_select(
6 user_mail_notification_options(@user), @user.mail_notification),
6 user_mail_notification_options(@user), @user.mail_notification),
7 :onchange => 'if (this.value == "selected") {$("#notified-projects").show();} else {$("#notified-projects").hide();}'
7 :onchange => 'if (this.value == "selected") {$("#notified-projects").show();} else {$("#notified-projects").hide();}'
8 ) %>
8 ) %>
9 </p>
9 </p>
10 <%= content_tag 'div', :id => 'notified-projects', :style => (@user.mail_notification == 'selected' ? '' : 'display:none;') do %>
10 <%= content_tag 'div', :id => 'notified-projects', :style => (@user.mail_notification == 'selected' ? '' : 'display:none;') do %>
11 <p>
11 <%= render_project_nested_lists(@user.projects) do |project|
12 <%= render_project_nested_lists(@user.projects) do |project|
12 content_tag('label',
13 content_tag('label',
13 check_box_tag(
14 check_box_tag(
14 'notified_project_ids[]',
15 'notified_project_ids[]',
15 project.id,
16 project.id,
16 @user.notified_projects_ids.include?(project.id)
17 @user.notified_projects_ids.include?(project.id)
17 ) + ' ' + h(project.name)
18 ) + ' ' + h(project.name)
18 )
19 )
19 end %>
20 end %>
21 </p>
22 <p><em class="info"><%= l(:text_user_mail_option) %></em></p>
20 <p><em class="info"><%= l(:text_user_mail_option) %></em></p>
23 <% end %>
21 <% end %>
24 <p>
22 <p>
25 <label>
23 <label>
26 <%= l(:label_user_mail_no_self_notified) %>
24 <%= l(:label_user_mail_no_self_notified) %>
27 <%= check_box_tag 'no_self_notified', 1, @user.pref[:no_self_notified] %>
25 <%= check_box_tag 'no_self_notified', 1, @user.pref[:no_self_notified] %>
28 </label>
26 </label>
29 </p>
27 </p>
General Comments 0
You need to be logged in to leave comments. Login now