gitlab-org--gitlab-foss/app/views/projects/buttons/_notifications.html.haml

22 lines
886 B
Plaintext
Raw Normal View History

- return unless [@membership, @group_member].any?
2015-09-20 16:28:14 +00:00
- if @membership
= form_tag profile_notifications_path, method: :put, remote: true, class: 'inline-form', 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.btn-new#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)
- elsif @group_member
.btn.btn-new.disabled#notifications-button
= icon('bell')
= notification_label(@group_member)
= icon('angle-down')