summaryrefslogtreecommitdiff
path: root/app/views/projects/buttons/_notifications.html.haml
blob: a3786c35a1f93400ec9e8d9d81e2c5116004b116 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
- case @membership
- when ProjectMember
  = form_tag profile_notifications_path, method: :put, remote: true, class: 'inline', id: 'notification-form' do
    = hidden_field_tag :notification_type, 'project'
    = hidden_field_tag :notification_id, @membership.id
    = hidden_field_tag :notification_level
    %span.dropdown
      %a.dropdown-new.btn.notifications-btn#notifications-button{href: '#', "data-toggle" => "dropdown"}
        = icon('bell')
        = notification_label(@membership)
        = icon('angle-down')
      %ul.dropdown-menu.dropdown-menu-right.project-home-dropdown
        - Notification.project_notification_levels.each do |level|
          = notification_list_item(level, @membership)

- when GroupMember
  .btn.disabled.notifications-btn.has-tooltip{title: "To change the notification level, you need to be a member of the project itself, not only its group."}
    = icon('bell')
    = notification_label(@membership)
    = icon('angle-down')