debian-mirror-gitlab/app/views/shared/notifications/_custom_notifications.html.haml

34 lines
2.1 KiB
Text
Raw Normal View History

2019-12-26 22:10:19 +05:30
- hide_label = local_assigns.fetch(:hide_label, false)
2017-09-10 17:25:29 +05:30
.modal.fade{ tabindex: "-1", role: "dialog", id: notifications_menu_identifier("modal", notification_setting), "aria-labelledby": "custom-notifications-title" }
2016-06-22 15:30:34 +05:30
.modal-dialog
.modal-content
.modal-header
%h4#custom-notifications-title.modal-title
2017-09-10 17:25:29 +05:30
#{ _('Custom notification events') }
2018-11-08 19:23:39 +05:30
%button.close{ type: "button", "data-dismiss": "modal", "aria-label" => _('Close') }
%span{ "aria-hidden": true } ×
2016-06-22 15:30:34 +05:30
.modal-body
.container-fluid
= form_for notification_setting, html: { class: "custom-notifications-form" } do |f|
= hidden_setting_source_input(notification_setting)
2019-12-26 22:10:19 +05:30
= hidden_field_tag("hide_label", true) if hide_label
2016-06-22 15:30:34 +05:30
.row
.col-lg-4
2020-06-23 00:09:42 +05:30
%h4.gl-mt-0= _('Notification events')
2016-06-22 15:30:34 +05:30
%p
2020-01-01 13:55:28 +05:30
- notification_link = link_to _('notification emails'), help_page_path('user/profile/notifications'), target: '_blank'
2017-09-10 17:25:29 +05:30
- paragraph = _('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 %{notification_link}.') % { notification_link: notification_link.html_safe }
#{ paragraph.html_safe }
2016-06-22 15:30:34 +05:30
.col-lg-8
2018-11-20 20:47:30 +05:30
- notification_setting.email_events.each_with_index do |event, index|
2016-06-22 15:30:34 +05:30
- field_id = "#{notifications_menu_identifier("modal", notification_setting)}_notification_setting[#{event}]"
.form-group
2020-06-23 00:09:42 +05:30
.form-check{ class: ("gl-mt-0" if index == 0) }
2018-11-08 19:23:39 +05:30
= check_box("notification_setting", event, id: field_id, class: "js-custom-notification-event form-check-input", checked: notification_setting.public_send(event))
%label.form-check-label{ for: field_id }
2016-06-22 15:30:34 +05:30
%strong
2017-08-17 22:00:37 +05:30
= notification_event_name(event)
2020-03-13 15:44:24 +05:30
.fa.custom-notification-event-loading.spinner