debian-mirror-gitlab/app/views/admin/labels/index.html.haml

20 lines
411 B
Text
Raw Normal View History

2018-11-08 19:23:39 +05:30
- page_title _("Labels")
2016-06-02 11:05:42 +05:30
%div
2018-12-05 23:21:45 +05:30
= link_to new_admin_label_path, class: "float-right btn btn-nr btn-success" do
2018-11-08 19:23:39 +05:30
= _('New label')
2016-06-02 11:05:42 +05:30
%h3.page-title
2018-11-08 19:23:39 +05:30
= _('Labels')
2015-09-25 12:07:36 +05:30
%hr
2018-11-18 11:00:15 +05:30
.labels.labels-container.admin-labels
2015-09-25 12:07:36 +05:30
- if @labels.present?
2018-11-18 11:00:15 +05:30
%ul.manage-labels-list
2015-09-25 12:07:36 +05:30
= render @labels
2018-11-18 11:00:15 +05:30
2015-09-25 12:07:36 +05:30
= paginate @labels, theme: 'gitlab'
- else
2018-11-08 19:23:39 +05:30
.card.bg-light
.nothing-here-block= _('There are no labels yet')
2016-06-02 11:05:42 +05:30