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

25 lines
1.9 KiB
Text
Raw Normal View History

2016-06-22 15:30:34 +05:30
- if notification_setting
2017-08-17 22:00:37 +05:30
.js-notification-dropdown.notification-dropdown.project-action-button.dropdown.inline
2016-06-22 15:30:34 +05:30
= form_for notification_setting, remote: true, html: { class: "inline notification-form" } do |f|
= hidden_setting_source_input(notification_setting)
= f.hidden_field :level, class: "notification_setting_level"
.js-notification-toggle-btns
%div{ class: ("btn-group" if notification_setting.custom?) }
- if notification_setting.custom?
2017-09-10 17:25:29 +05:30
%button.dropdown-new.btn.btn-default.has-tooltip.notifications-btn#notifications-button{ type: "button", title: "Notification setting", "aria-label" => "Notification setting: #{notification_title(notification_setting.level)}", data: { container: "body", toggle: "modal", target: "#" + notifications_menu_identifier("modal", notification_setting) } }
2016-06-22 15:30:34 +05:30
= icon("bell", class: "js-notification-loading")
= notification_title(notification_setting.level)
%button.btn.dropdown-toggle{ data: { toggle: "dropdown", target: notifications_menu_identifier("dropdown", notification_setting) } }
2016-11-03 12:29:30 +05:30
= icon('caret-down')
2016-06-22 15:30:34 +05:30
.sr-only Toggle dropdown
- else
2017-09-10 17:25:29 +05:30
%button.dropdown-new.btn.btn-default.has-tooltip.notifications-btn#notifications-button{ type: "button", title: "Notification setting", "aria-label" => "Notification setting: #{notification_title(notification_setting.level)}", data: { container: "body", toggle: "dropdown", target: notifications_menu_identifier("dropdown", notification_setting) } }
2016-06-22 15:30:34 +05:30
= icon("bell", class: "js-notification-loading")
= notification_title(notification_setting.level)
= icon("caret-down")
2017-08-17 22:00:37 +05:30
= render "shared/notifications/notification_dropdown", notification_setting: notification_setting
2016-06-22 15:30:34 +05:30
= content_for :scripts_body do
= render "shared/notifications/custom_notifications", notification_setting: notification_setting