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

21 lines
950 B
Plaintext
Raw Normal View History

2015-10-18 10:19:30 +00:00
- 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.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)
2015-10-18 10:19:30 +00:00
- when GroupMember
2015-10-18 10:19:36 +00:00
.btn.btn-new.disabled.has_tooltip{title: "To change the notification level, you need to be a member of the project itself, not only its group."}
= icon('bell')
2015-10-18 10:19:30 +00:00
= notification_label(@membership)
= icon('angle-down')