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

23 lines
660 B
Plaintext
Raw Normal View History

2016-09-19 19:49:08 +00:00
- page_title 'Labels'
2017-02-22 22:42:11 +00:00
= render "groups/head_issues"
2016-09-19 19:49:08 +00:00
2016-09-19 19:49:08 +00:00
.top-area.adjust
.nav-text
Labels can be applied to issues and merge requests. Group labels are available for any project within the group.
2016-09-19 19:49:08 +00:00
.nav-controls
2016-09-19 19:49:08 +00:00
- if can?(current_user, :admin_label, @group)
= link_to "New label", new_group_label_path(@group), class: "btn btn-new"
2016-09-19 19:49:08 +00:00
.labels
2016-09-29 04:03:28 +00:00
.other-labels
2016-09-19 19:49:08 +00:00
- if @labels.present?
2016-09-29 04:03:28 +00:00
%ul.content-list.manage-labels-list.js-other-labels
= render partial: 'shared/label', subject: @group, collection: @labels, as: :label
2016-09-19 19:49:08 +00:00
= paginate @labels, theme: 'gitlab'
- else
.nothing-here-block
No labels created yet.