05b97af343
- Authentication log - Notifications
57 lines
2.1 KiB
Text
57 lines
2.1 KiB
Text
- page_title "Notifications"
|
|
- @content_class = "limit-container-width" unless fluid_layout
|
|
= render 'profiles/head'
|
|
|
|
%div
|
|
- if @user.errors.any?
|
|
.alert.alert-danger
|
|
%ul
|
|
- @user.errors.full_messages.each do |msg|
|
|
%li= msg
|
|
|
|
= hidden_field_tag :notification_type, 'global'
|
|
.row.prepend-top-default
|
|
.col-lg-4.profile-settings-sidebar
|
|
%h4.prepend-top-0
|
|
= page_title
|
|
%p
|
|
You can specify notification level per group or per project.
|
|
%p
|
|
By default, all projects and groups will use the global notifications setting.
|
|
.col-lg-8
|
|
%h5.prepend-top-0
|
|
Global notification settings
|
|
|
|
= form_for @user, url: profile_notifications_path, method: :put, html: { class: 'update-notifications prepend-top-default' } do |f|
|
|
.form-group
|
|
= f.label :notification_email, class: "label-light"
|
|
= f.select :notification_email, @user.all_emails, { include_blank: false }, class: "select2"
|
|
|
|
= label_tag :global_notification_level, "Global notification level", class: "label-light"
|
|
%br
|
|
.clearfix
|
|
.form-group.pull-left.global-notification-setting
|
|
= render 'shared/notifications/button', notification_setting: @global_notification_setting
|
|
|
|
.clearfix
|
|
|
|
= form_for @user, url: profile_notifications_path, method: :put do |f|
|
|
%label{ for: 'user_notified_of_own_activity' }
|
|
= f.check_box :notified_of_own_activity
|
|
%span Receive notifications about your own activity
|
|
|
|
%hr
|
|
%h5
|
|
Groups (#{@group_notifications.count})
|
|
%div
|
|
%ul.bordered-list
|
|
- @group_notifications.each do |setting|
|
|
= render 'group_settings', setting: setting, group: setting.source
|
|
%h5
|
|
Projects (#{@project_notifications.count})
|
|
%p.account-well
|
|
To specify the notification level per project of a group you belong to, you need to visit project page and change notification level there.
|
|
.append-bottom-default
|
|
%ul.bordered-list
|
|
- @project_notifications.each do |setting|
|
|
= render 'project_settings', setting: setting, project: setting.source
|