_mail_notifications.html.erb
30 lines
| 1.2 KiB
| text/plain
|
TextLexer
|
r4109 | <p> | ||
|
r7572 | <%= label_tag "user_mail_notification", l(:description_user_mail_notification), :class => "hidden-for-sighted" %> | ||
|
r9552 | <%= select_tag( | ||
'user[mail_notification]', | ||||
options_for_select( | ||||
user_mail_notification_options(@user), @user.mail_notification), | ||||
|
r9885 | :onchange => 'if (this.value == "selected") {$("#notified-projects").show();} else {$("#notified-projects").hide();}' | ||
|
r9552 | ) %> | ||
|
r4109 | </p> | ||
|
r9551 | <%= content_tag 'div', :id => 'notified-projects', :style => (@user.mail_notification == 'selected' ? '' : 'display:none;') do %> | ||
|
r10007 | <%= render_project_nested_lists(@user.projects) do |project| | ||
content_tag('label', | ||||
check_box_tag( | ||||
|
r11610 | 'user[notified_project_ids][]', | ||
|
r10007 | project.id, | ||
|
r12006 | @user.notified_projects_ids.include?(project.id), | ||
:id => nil | ||||
|
r10007 | ) + ' ' + h(project.name) | ||
) | ||||
end %> | ||||
|
r11610 | <%= hidden_field_tag 'user[notified_project_ids][]', '' %> | ||
|
r9552 | <p><em class="info"><%= l(:text_user_mail_option) %></em></p> | ||
|
r4109 | <% end %> | ||
|
r11609 | |||
<%= fields_for :pref, @user.pref do |pref_fields| %> | ||||
|
r9552 | <p> | ||
|
r11609 | <%= pref_fields.check_box :no_self_notified %> | ||
<label for="pref_no_self_notified"><%= l(:label_user_mail_no_self_notified) %></label> | ||||
|
r9552 | </p> | ||
|
r11609 | <% end %> | ||