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

20 lines
411 B
Text
Raw Normal View History

- 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')
2015-09-03 08:50:23 -04:00
%hr
.labels.labels-container.admin-labels
2015-09-03 08:50:23 -04:00
- if @labels.present?
%ul.manage-labels-list
2015-09-03 08:50:23 -04:00
= render @labels
2015-09-03 08:50:23 -04:00
= paginate @labels, theme: 'gitlab'
- else
.card.bg-light
.nothing-here-block= _('There are no labels yet')