2016-11-03 12:29:30 +05:30
|
|
|
- page_title 'Labels'
|
2017-09-10 17:25:29 +05:30
|
|
|
- if show_new_nav? && can?(current_user, :admin_label, @group)
|
|
|
|
- content_for :breadcrumbs_extra do
|
|
|
|
= link_to "New label", new_group_label_path(@group), class: "btn btn-new"
|
|
|
|
|
2017-08-17 22:00:37 +05:30
|
|
|
= render "groups/head_issues"
|
2016-11-03 12:29:30 +05:30
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
|
2016-11-03 12:29:30 +05:30
|
|
|
.top-area.adjust
|
|
|
|
.nav-text
|
|
|
|
Labels can be applied to issues and merge requests. Group labels are available for any project within the group.
|
|
|
|
|
2017-09-10 17:25:29 +05:30
|
|
|
.nav-controls{ class: ("visible-xs" if show_new_nav?) }
|
2016-11-03 12:29:30 +05:30
|
|
|
- if can?(current_user, :admin_label, @group)
|
2017-09-10 17:25:29 +05:30
|
|
|
= link_to "New label", new_group_label_path(@group), class: "btn btn-new"
|
2016-11-03 12:29:30 +05:30
|
|
|
|
|
|
|
.labels
|
|
|
|
.other-labels
|
|
|
|
- if @labels.present?
|
|
|
|
%ul.content-list.manage-labels-list.js-other-labels
|
2016-11-24 13:41:30 +05:30
|
|
|
= render partial: 'shared/label', subject: @group, collection: @labels, as: :label
|
2016-11-03 12:29:30 +05:30
|
|
|
= paginate @labels, theme: 'gitlab'
|
|
|
|
- else
|
|
|
|
.nothing-here-block
|
|
|
|
No labels created yet.
|