gitlab-org--gitlab-foss/app/views/shared/notifications/_custom_notifications.html....

32 lines
1.8 KiB
Plaintext
Raw Normal View History

.modal.fade{ tabindex: "-1", role: "dialog", id: notifications_menu_identifier("modal", notification_setting), aria: { labelledby: "custom-notifications-title" } }
2016-06-13 15:51:35 -04:00
.modal-dialog
.modal-content
.modal-header
%button.close{ type: "button", data: { dismiss: "modal" }, aria: { label: "close" } }
%span{ aria: { hidden: "true" } } ×
%h4#custom-notifications-title.modal-title
Custom notification events
2016-06-13 15:51:35 -04:00
.modal-body
.container-fluid
= form_for notification_setting, html: { class: "custom-notifications-form" } do |f|
= hidden_setting_source_input(notification_setting)
2016-06-13 15:51:35 -04:00
.row
.col-lg-4
2016-06-13 15:51:35 -04:00
%h4.prepend-top-0
Notification events
%p
Custom notification levels are the same as participating levels. With custom notification levels you will also receive notifications for select events. To find out more, check out
= succeed "." do
2017-01-11 06:54:04 -05:00
%a{ href: help_page_path('workflow/notifications'), target: "_blank" } notification emails
.col-lg-8
- NotificationSetting::EMAIL_EVENTS.each_with_index do |event, index|
- field_id = "#{notifications_menu_identifier("modal", notification_setting)}_notification_setting[#{event}]"
2016-06-13 15:51:35 -04:00
.form-group
.checkbox{ class: ("prepend-top-0" if index == 0) }
%label{ for: field_id }
= check_box("notification_setting", event, id: field_id, class: "js-custom-notification-event", checked: notification_setting.public_send(event))
2016-06-13 15:51:35 -04:00
%strong
= notification_event_name(event)
2016-06-13 15:51:35 -04:00
= icon("spinner spin", class: "custom-notification-event-loading")