debian-mirror-gitlab/app/views/profiles/notifications/show.html.haml

54 lines
2.1 KiB
Text
Raw Normal View History

2019-09-04 21:01:54 +05:30
- page_title _('Notifications')
2017-09-10 17:25:29 +05:30
- @content_class = "limit-container-width" unless fluid_layout
2015-09-25 12:07:36 +05:30
2016-06-02 11:05:42 +05:30
%div
- if @user.errors.any?
2017-08-17 22:00:37 +05:30
.alert.alert-danger
2015-04-26 12:48:37 +05:30
%ul
- @user.errors.full_messages.each do |msg|
%li= msg
2014-09-02 18:07:02 +05:30
= hidden_field_tag :notification_type, 'global'
2018-03-17 18:26:18 +05:30
.row.prepend-top-default
2017-09-10 17:25:29 +05:30
.col-lg-4.profile-settings-sidebar
2018-03-17 18:26:18 +05:30
%h4.prepend-top-0
2016-06-02 11:05:42 +05:30
= page_title
%p
2019-09-04 21:01:54 +05:30
= _('You can specify notification level per group or per project.')
2016-06-02 11:05:42 +05:30
%p
2019-09-04 21:01:54 +05:30
= _('By default, all projects and groups will use the global notifications setting.')
2017-09-10 17:25:29 +05:30
.col-lg-8
2018-03-17 18:26:18 +05:30
%h5.prepend-top-0
2019-09-04 21:01:54 +05:30
= _('Global notification settings')
2014-09-02 18:07:02 +05:30
2016-06-02 11:05:42 +05:30
= form_for @user, url: profile_notifications_path, method: :put, html: { class: 'update-notifications prepend-top-default' } do |f|
2019-07-07 11:18:12 +05:30
= render_if_exists 'profiles/notifications/email_settings', form: f
2015-04-26 12:48:37 +05:30
2018-11-18 11:00:15 +05:30
= label_tag :global_notification_level, "Global notification level", class: "label-bold"
2016-06-22 15:30:34 +05:30
%br
.clearfix
2018-11-08 19:23:39 +05:30
.form-group.float-left.global-notification-setting
2017-08-17 22:00:37 +05:30
= render 'shared/notifications/button', notification_setting: @global_notification_setting
2016-06-22 15:30:34 +05:30
.clearfix
2017-08-17 22:00:37 +05:30
= 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
2019-09-04 21:01:54 +05:30
%span= _('Receive notifications about your own activity')
2017-08-17 22:00:37 +05:30
2016-06-02 11:05:42 +05:30
%hr
%h5
2019-09-04 21:01:54 +05:30
= _('Groups (%{count})') % { count: @group_notifications.count }
2016-06-02 11:05:42 +05:30
%div
2019-09-04 21:01:54 +05:30
- @group_notifications.each do |setting|
= render 'group_settings', setting: setting, group: setting.source
2016-06-02 11:05:42 +05:30
%h5
2019-09-04 21:01:54 +05:30
= _('Projects (%{count})') % { count: @project_notifications.count }
2016-06-02 11:05:42 +05:30
%p.account-well
2019-09-04 21:01:54 +05:30
= _('To specify the notification level per project of a group you belong to, you need to visit project page and change notification level there.')
2016-06-02 11:05:42 +05:30
.append-bottom-default
%ul.bordered-list
- @project_notifications.each do |setting|
= render 'project_settings', setting: setting, project: setting.source