Welcome to mirror list, hosted at ThFree Co, Russian Federation.

_project_settings.html.haml « notifications « profiles « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 17c097154da66b771198cd22ff1b079985dfdf50 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
%li.notification-list-item
  %span.notification.fa.fa-holder.append-right-5
    - if setting.global?
      = notification_icon(current_user.notification_level)
    - else
      = notification_icon(setting.level)

  %span.str-truncated
    = link_to_project(project)

  .pull-right
    = form_for [project.namespace.becomes(Namespace), project, setting], remote: true, html: { class: 'update-notifications' } do |f|
      = f.select :level, NotificationSetting.levels.keys, {}, class: 'form-control trigger-submit'