To check out this repository please hg clone the following URL, or open the URL using EasyMercurial or your preferred Mercurial client.

Statistics Download as Zip
| Branch: | Tag: | Revision:

root / app / views / users / _mail_notifications.html.erb @ 1591:63650ae64bf2

History | View | Annotate | Download (1.19 KB)

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
            'user[notified_project_ids][]',
15
             project.id,
16
             @user.notified_projects_ids.include?(project.id),
17
             :id => nil
18
          ) + ' ' + h(project.name)
19
        )
20
      end %>
21
  <%= hidden_field_tag 'user[notified_project_ids][]', '' %>
22
  <p><em class="info"><%= l(:text_user_mail_option) %></em></p>
23
<% end %>
24

    
25
<%= fields_for :pref, @user.pref do |pref_fields| %>
26
<p>
27
  <%= pref_fields.check_box :no_self_notified %>
28
  <label for="pref_no_self_notified"><%= l(:label_user_mail_no_self_notified) %></label>
29
</p>
30
<% end %>