summaryrefslogtreecommitdiff
path: root/app/views/admin/labels/index.html.haml
blob: 38137f360fdb7e6bd8f73cfd99bdc279a850fd67 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
- page_title _("Labels")

%div
  = link_to new_admin_label_path, class: "float-right btn btn-nr btn-success" 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'
  - else
    .nothing-here-block= _('There are no labels yet')