2013-03-27 13:04:29 -04:00
|
|
|
%h3.page_title Setup your notification level
|
|
|
|
|
2013-03-27 14:07:52 -04:00
|
|
|
%br
|
2013-03-27 13:04:29 -04:00
|
|
|
|
2013-03-27 14:07:52 -04:00
|
|
|
%p.light
|
|
|
|
%strong Disabled
|
|
|
|
– You will not get any notifications via email
|
|
|
|
%p.light
|
|
|
|
%strong Participating
|
|
|
|
– You will receive only notifications from related resources(ex. from assigned issue or your commit)
|
|
|
|
%p.light
|
|
|
|
%strong Watch
|
|
|
|
– You will receive all notifications from projects in which you participate
|
|
|
|
%hr
|
2013-03-27 13:04:29 -04:00
|
|
|
|
2013-04-04 15:11:51 -04:00
|
|
|
.row
|
|
|
|
.span4
|
2013-04-12 11:46:11 -04:00
|
|
|
%h5 Global setting
|
2013-04-04 15:11:51 -04:00
|
|
|
.span7
|
|
|
|
= form_tag profile_notifications_path, method: :put, remote: true, class: 'update-notifications' do
|
|
|
|
= hidden_field_tag :notification_type, 'global'
|
|
|
|
|
|
|
|
= label_tag do
|
|
|
|
= radio_button_tag :notification_level, Notification::N_DISABLED, @notification.disabled?, class: 'trigger-submit'
|
|
|
|
%span Disabled
|
|
|
|
|
|
|
|
= label_tag do
|
|
|
|
= radio_button_tag :notification_level, Notification::N_PARTICIPATING, @notification.participating?, class: 'trigger-submit'
|
|
|
|
%span Participating
|
|
|
|
|
|
|
|
= label_tag do
|
|
|
|
= radio_button_tag :notification_level, Notification::N_WATCH, @notification.watch?, class: 'trigger-submit'
|
|
|
|
%span Watch
|
|
|
|
|
|
|
|
%hr
|
|
|
|
= link_to '#', class: 'js-toggle-visibility-link' do
|
|
|
|
%h6.btn.btn-tiny
|
|
|
|
%i.icon-chevron-down
|
2013-04-12 11:46:11 -04:00
|
|
|
%span Per project notifications setting
|
2013-04-04 15:11:51 -04:00
|
|
|
|
|
|
|
%ul.well-list.js-toggle-visibility-container.hide
|
|
|
|
- @users_projects.each do |users_project|
|
|
|
|
- notification = Notification.new(users_project)
|
2013-03-27 13:04:29 -04:00
|
|
|
%li
|
|
|
|
.row
|
2013-03-27 14:07:52 -04:00
|
|
|
.span4
|
2013-04-04 15:11:51 -04:00
|
|
|
%span
|
|
|
|
= link_to_project(users_project.project)
|
2013-03-27 14:07:52 -04:00
|
|
|
.span7
|
2013-04-04 15:11:51 -04:00
|
|
|
= form_tag profile_notifications_path, method: :put, remote: true, class: 'update-notifications' do
|
|
|
|
= hidden_field_tag :notification_type, 'project', id: dom_id(users_project, 'notification_type')
|
|
|
|
= hidden_field_tag :notification_id, users_project.id, id: dom_id(users_project, 'notification_id')
|
2013-03-27 13:04:29 -04:00
|
|
|
|
2013-04-04 15:11:51 -04:00
|
|
|
= label_tag do
|
|
|
|
= radio_button_tag :notification_level, Notification::N_GLOBAL, notification.global?, id: dom_id(users_project, 'notification_level'), class: 'trigger-submit'
|
2013-04-12 11:46:11 -04:00
|
|
|
%span Use global setting
|
2013-03-27 14:07:52 -04:00
|
|
|
|
|
|
|
= label_tag do
|
2013-04-04 15:11:51 -04:00
|
|
|
= radio_button_tag :notification_level, Notification::N_DISABLED, notification.disabled?, id: dom_id(users_project, 'notification_level'), class: 'trigger-submit'
|
2013-03-27 14:07:52 -04:00
|
|
|
%span Disabled
|
|
|
|
|
|
|
|
= label_tag do
|
2013-04-04 15:11:51 -04:00
|
|
|
= radio_button_tag :notification_level, Notification::N_PARTICIPATING, notification.participating?, id: dom_id(users_project, 'notification_level'), class: 'trigger-submit'
|
2013-03-27 14:07:52 -04:00
|
|
|
%span Participating
|
|
|
|
|
|
|
|
= label_tag do
|
2013-04-04 15:11:51 -04:00
|
|
|
= radio_button_tag :notification_level, Notification::N_WATCH, notification.watch?, id: dom_id(users_project, 'notification_level'), class: 'trigger-submit'
|
2013-03-27 14:07:52 -04:00
|
|
|
%span Watch
|
|
|
|
|
|
|
|
|
2013-04-04 15:11:51 -04:00
|
|
|
.save-status-fixed
|
|
|
|
%span.update-success.cgreen.hide
|
|
|
|
%i.icon-ok
|
|
|
|
Saved
|
|
|
|
%span.update-failed.cred.hide
|
|
|
|
%i.icon-remove
|
|
|
|
Failed
|