2010-09-29 02:13:06 +04:00
|
|
|
<p>
|
2011-10-29 05:22:31 +04:00
|
|
|
<%= label_tag "user_mail_notification", l(:description_user_mail_notification), :class => "hidden-for-sighted" %>
|
2012-05-28 12:24:46 +04:00
|
|
|
<%= select_tag(
|
|
|
|
'user[mail_notification]',
|
|
|
|
options_for_select(
|
|
|
|
user_mail_notification_options(@user), @user.mail_notification),
|
2012-07-22 17:29:26 +04:00
|
|
|
:onchange => 'if (this.value == "selected") {$("#notified-projects").show();} else {$("#notified-projects").hide();}'
|
2012-05-28 12:24:46 +04:00
|
|
|
) %>
|
2010-09-29 02:13:06 +04:00
|
|
|
</p>
|
2012-05-28 12:24:31 +04:00
|
|
|
<%= content_tag 'div', :id => 'notified-projects', :style => (@user.mail_notification == 'selected' ? '' : 'display:none;') do %>
|
2012-08-10 22:39:49 +04:00
|
|
|
<%= 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 %>
|
2012-05-28 12:24:46 +04:00
|
|
|
<p><em class="info"><%= l(:text_user_mail_option) %></em></p>
|
2010-09-29 02:13:06 +04:00
|
|
|
<% end %>
|
2012-05-28 12:24:46 +04:00
|
|
|
<p>
|
|
|
|
<label>
|
|
|
|
<%= l(:label_user_mail_no_self_notified) %>
|
|
|
|
<%= check_box_tag 'no_self_notified', 1, @user.pref[:no_self_notified] %>
|
|
|
|
</label>
|
|
|
|
</p>
|