debian-mirror-gitlab/app/views/shared/empty_states/_labels.html.haml

15 lines
945 B
Text
Raw Normal View History

2017-08-17 22:00:37 +05:30
.row.empty-state.labels
2018-11-08 19:23:39 +05:30
.col-12
2019-03-02 22:35:43 +05:30
.svg-content.qa-label-svg
2018-03-17 18:26:18 +05:30
= image_tag 'illustrations/labels.svg'
2018-11-08 19:23:39 +05:30
.col-12
2017-08-17 22:00:37 +05:30
.text-content
2018-03-17 18:26:18 +05:30
%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.")
2018-12-13 13:39:08 +05:30
.text-center
- if can?(current_user, :admin_label, @project)
= link_to _('New label'), new_project_label_path(@project), class: 'btn btn-success qa-label-create-new', title: _('New label'), id: 'new_label_link'
= link_to _('Generate a default set of labels'), generate_project_labels_path(@project), method: :post, class: 'btn btn-success btn-inverted', 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 btn-success', title: _('New label'), id: 'new_label_link'