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

_labels.html.haml « empty_states « shared « views « app - gitlab.com/gitlab-org/gitlab-foss.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
blob: e96fcd11cef6d73d4248d6dc0ec866d9d8539811 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
.row.empty-state.labels
  .col-12
    .svg-content{ data: { qa_selector: 'label_svg_content' } }
      = image_tag 'illustrations/labels.svg'
  .col-12
    .text-content
      %h4= _("Labels can be applied to issues and merge requests to categorize them.")
      %p= _("You can also star a label to make it a priority label.")
      .text-center
        - if can?(current_user, :admin_label, @project)
          = link_to _('New label'), new_project_label_path(@project), class: 'btn gl-button btn-confirm', title: _('New label'), id: 'new_label_link'
          = link_to _('Generate a default set of labels'), generate_project_labels_path(@project), method: :post, class: 'btn gl-button btn-confirm-secondary', title: _('Generate a default set of labels'), id: 'generate_labels_link'
        - if can?(current_user, :admin_label, @group)
          = link_to _('New label'), new_group_label_path(@group), class: 'btn gl-button btn-confirm', title: _('New label'), id: 'new_label_link'