Welcome to mirror list, hosted at ThFree Co, Russian Federation.

index.html.haml « labels « admin « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: f204e620e9d02069307dcd42c1a8ca9518e3d55c (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 gl-button 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')