summaryrefslogtreecommitdiff
path: root/app/views/projects/labels/index.html.haml
blob: 9081bcfe9b35ae7a899c2f1ffe3b7b3083cc490a (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
- page_title "Labels"
= render "header_title"

.gray-content-block.top-block
  - if can? current_user, :admin_label, @project
    = link_to new_namespace_project_label_path(@project.namespace, @project), class: "pull-right btn btn-new" do
      = icon('plus')
      New label
  .oneline
    Labels can be applied to issues and merge requests.

.labels
  - if @labels.present?
    %ul.content-list.manage-labels-list
      = render @labels
    = paginate @labels, theme: 'gitlab'
  - else
    .nothing-here-block
      - if can? current_user, :admin_label, @project
        Create first label or #{link_to 'generate', generate_namespace_project_labels_path(@project.namespace, @project), method: :post} default set of labels
      - else
        No labels created