view .svn/pristine/c1/c10e9a1142bb5d5518887fd1a88ba99ec4614876.svn-base @ 1386:e4c393cebb1a luisf

Merger from testing branch.
author luisf <luis.figueira@eecs.qmul.ac.uk>
date Tue, 24 Sep 2013 16:25:05 +0100
parents 038ba2d95de8
children
line wrap: on
line source
<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") {$("#notified-projects").show();} else {$("#notified-projects").hide();}'
     ) %>
</p>
<%= content_tag 'div', :id => 'notified-projects', :style => (@user.mail_notification == 'selected' ? '' : 'display:none;') do %>
  <%= render_project_nested_lists(@user.projects) do |project|
        content_tag('label', 
          check_box_tag(
            'notified_project_ids[]',
             project.id,
             @user.notified_projects_ids.include?(project.id)
          ) + ' ' + h(project.name)
        )
      end %>
  <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>