2013-07-31 10:05:22 -04:00
|
|
|
%h3.page-title
|
|
|
|
Notifications settings
|
|
|
|
|
|
|
|
.alert.alert-info
|
|
|
|
%p
|
|
|
|
%i.icon-circle.cred
|
|
|
|
%strong Disabled
|
|
|
|
– You will not get any notifications via email
|
|
|
|
%p
|
|
|
|
%i.icon-circle.cblue
|
|
|
|
%strong Participating
|
|
|
|
– You will receive only notifications from related resources(ex. from assigned issue or your commit)
|
|
|
|
%p
|
|
|
|
%i.icon-circle.cgreen
|
|
|
|
%strong Watch
|
|
|
|
– You will receive all notifications from projects in which you participate
|
2013-03-27 13:04:29 -04:00
|
|
|
|
2013-04-04 15:11:51 -04:00
|
|
|
.row
|
|
|
|
.span4
|
2013-07-31 10:05:22 -04:00
|
|
|
%h4
|
|
|
|
= notification_icon(@notification)
|
|
|
|
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
|
|
|
|
|
2013-07-31 10:05:22 -04:00
|
|
|
%br
|
2013-04-04 15:11:51 -04:00
|
|
|
= link_to '#', class: 'js-toggle-visibility-link' do
|
2013-07-31 10:05:22 -04:00
|
|
|
%span.btn.btn-tiny
|
2013-04-04 15:11:51 -04:00
|
|
|
%i.icon-chevron-down
|
2013-06-21 16:17:58 -04:00
|
|
|
%span Advanced notifications settings
|
|
|
|
.js-toggle-visibility-container.hide
|
2013-07-31 10:05:22 -04:00
|
|
|
%hr
|
|
|
|
%h4 Groups:
|
|
|
|
%ul.bordered-list
|
2013-06-21 16:17:58 -04:00
|
|
|
- @users_groups.each do |users_group|
|
|
|
|
- notification = Notification.new(users_group)
|
2013-06-21 16:19:30 -04:00
|
|
|
= render 'settings', type: 'group', membership: users_group, notification: notification
|
2013-06-21 16:17:58 -04:00
|
|
|
|
2013-07-31 10:05:22 -04:00
|
|
|
%h4 Projects:
|
|
|
|
%ul.bordered-list
|
2013-06-21 16:17:58 -04:00
|
|
|
- @users_projects.each do |users_project|
|
|
|
|
- notification = Notification.new(users_project)
|
|
|
|
= render 'settings', type: 'project', membership: users_project, notification: notification
|
2013-03-27 14:07:52 -04:00
|
|
|
|
|
|
|
|
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
|