gitlab-org--gitlab-foss/app/views/projects/labels/index.html.haml

23 lines
763 B
Plaintext
Raw Normal View History

2015-04-30 17:06:18 +00:00
- 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
2015-12-02 13:54:50 +00:00
= 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