To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.
root / app / views / users / _mail_notifications.html.erb @ 443:350acce374a2
History | View | Annotate | Download (836 Bytes)
| 1 |
<p>
|
|---|---|
| 2 |
<%= select_tag 'user[mail_notification]', options_for_select(user_mail_notification_options(@user), @user.mail_notification),
|
| 3 |
:onchange => 'if (this.value == "selected") {Element.show("notified-projects")} else {Element.hide("notified-projects")}' %>
|
| 4 |
</p>
|
| 5 |
<% content_tag 'div', :id => 'notified-projects', :style => (@user.mail_notification == 'selected' ? '' : 'display:none;') do %>
|
| 6 |
<p><% @user.projects.each do |project| %> |
| 7 |
<label><%= check_box_tag 'notified_project_ids[]', project.id, @user.notified_projects_ids.include?(project.id) %> <%=h project.name %></label><br /> |
| 8 |
<% end %></p> |
| 9 |
<p><em><%= l(:text_user_mail_option) %></em></p> |
| 10 |
<% end %>
|
| 11 |
<p><label><%= l(:label_user_mail_no_self_notified) %></label><%= check_box_tag 'no_self_notified', 1, @user.pref[:no_self_notified] %></p> |
| 12 |
|