blob: 6861a802a6390623faf27f34c2dfd37d5852494d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
|
- page_title _("Labels")
%div
= link_to new_admin_label_path, class: "float-right btn gl-button btn-confirm" do
= _('New label')
%h3.page-title
= _('Labels')
%hr
.labels.labels-container.admin-labels
- if @labels.present?
%ul.manage-labels-list
= render @labels
= paginate @labels, theme: 'gitlab'
.nothing-here-block{ class: ('hidden' if @labels.present?) }
= _('There are no labels yet')
|