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

index.html.haml « labels « groups « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: 9e59a09d45968fd48ed0cd1d27b79111e3da2407 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
- page_title 'Labels'
- if can?(current_user, :admin_label, @group)
  - content_for :breadcrumbs_extra do
    = link_to "New label", new_group_label_path(@group), class: "btn btn-new"

= render "groups/head_issues"


.top-area.adjust
  .nav-text
    Labels can be applied to issues and merge requests. Group labels are available for any project within the group.

  .nav-controls.visible-xs
    - if can?(current_user, :admin_label, @group)
      = link_to "New label", new_group_label_path(@group), class: "btn btn-new"

.labels
  .other-labels
    - if @labels.present?
      %ul.content-list.manage-labels-list.js-other-labels
        = render partial: 'shared/label', subject: @group, collection: @labels, as: :label
        = paginate @labels, theme: 'gitlab'
    - else
      .nothing-here-block
        No labels created yet.