summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorToshi MARUYAMA <marutosijp2@yahoo.co.jp>2012-05-28 08:24:46 +0000
committerToshi MARUYAMA <marutosijp2@yahoo.co.jp>2012-05-28 08:24:46 +0000
commite1268faa4ae76d9ee2a4e6428e0e76e93df27620 (patch)
treee44a65a606996b1a0e03d6d8d0638c044de8ae88
parentcfaa0fc23e00f97a019e9c9ffcfe936693229b97 (diff)
downloadredmine-e1268faa4ae76d9ee2a4e6428e0e76e93df27620.tar.gz
redmine-e1268faa4ae76d9ee2a4e6428e0e76e93df27620.zip
code layout cleanup app/views/users/_mail_notifications.html.erb
git-svn-id: svn+ssh://rubyforge.org/var/svn/redmine/trunk@9735 e93f8b46-1217-0410-a6f0-8f06a7374b81
-rw-r--r--app/views/users/_mail_notifications.html.erb34
1 files changed, 26 insertions, 8 deletions
diff --git a/app/views/users/_mail_notifications.html.erb b/app/views/users/_mail_notifications.html.erb
index e25d426ee..85c3e2ecf 100644
--- a/app/views/users/_mail_notifications.html.erb
+++ b/app/views/users/_mail_notifications.html.erb
@@ -1,13 +1,31 @@
<p>
<%= label_tag "user_mail_notification", l(:description_user_mail_notification), :class => "hidden-for-sighted" %>
-<%= select_tag 'user[mail_notification]', options_for_select(user_mail_notification_options(@user), @user.mail_notification),
- :onchange => 'if (this.value == "selected") {Element.show("notified-projects")} else {Element.hide("notified-projects")}' %>
+<%= select_tag(
+ 'user[mail_notification]',
+ options_for_select(
+ user_mail_notification_options(@user), @user.mail_notification),
+ :onchange => 'if (this.value == "selected") {Element.show("notified-projects")} else {Element.hide("notified-projects")}'
+ ) %>
</p>
<%= content_tag 'div', :id => 'notified-projects', :style => (@user.mail_notification == 'selected' ? '' : 'display:none;') do %>
-<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>
+ <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>
<% end %>
-<p><label><%= l(:label_user_mail_no_self_notified) %><%= check_box_tag 'no_self_notified', 1, @user.pref[:no_self_notified] %></label></p>
-
+<p>
+ <label>
+ <%= l(:label_user_mail_no_self_notified) %>
+ <%= check_box_tag 'no_self_notified', 1, @user.pref[:no_self_notified] %>
+ </label>
+</p>