##// END OF EJS Templates
Removed p around ul....
Jean-Philippe Lang -
r10007:32fcdff69fa3
parent child
Show More
@@ -8,17 +8,15
8 8 ) %>
9 9 </p>
10 10 <%= content_tag 'div', :id => 'notified-projects', :style => (@user.mail_notification == 'selected' ? '' : 'display:none;') do %>
11 <p>
12 <%= render_project_nested_lists(@user.projects) do |project|
13 content_tag('label',
14 check_box_tag(
15 'notified_project_ids[]',
16 project.id,
17 @user.notified_projects_ids.include?(project.id)
18 ) + ' ' + h(project.name)
19 )
20 end %>
21 </p>
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 %>
22 20 <p><em class="info"><%= l(:text_user_mail_option) %></em></p>
23 21 <% end %>
24 22 <p>
General Comments 0
You need to be logged in to leave comments. Login now