gitlab-org--gitlab-foss/app/views/profiles/notifications/_settings.html.haml

18 lines
784 B
Plaintext
Raw Normal View History

2013-06-21 20:17:58 +00:00
%li
%span.notification-icon-holder
- if notification.global?
= notification_icon(@notification)
- else
= notification_icon(notification)
2013-06-21 20:17:58 +00:00
%span.str-truncated
- if membership.kind_of? UsersGroup
= link_to membership.group.name, membership.group
- else
= link_to_project(membership.project)
.pull-right
= form_tag profile_notifications_path, method: :put, remote: true, class: 'update-notifications' do
= hidden_field_tag :notification_type, type, id: dom_id(membership, 'notification_type')
= hidden_field_tag :notification_id, membership.id, id: dom_id(membership, 'notification_id')
= select_tag :notification_level, options_for_select(Notification.options_with_labels, notification.level), class: 'trigger-submit'