12 lines
773 B
Text
12 lines
773 B
Text
|
.row.empty-state.labels
|
||
|
.pull-right.col-xs-12.col-sm-6
|
||
|
.svg-content
|
||
|
= render 'shared/empty_states/icons/labels.svg'
|
||
|
.col-xs-12.col-sm-6
|
||
|
.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.
|
||
|
- if can?(current_user, :admin_label, @project)
|
||
|
= link_to 'New label', new_namespace_project_label_path(@project.namespace, @project), class: 'btn btn-new', title: 'New label', id: 'new_label_link'
|
||
|
= link_to 'Generate a default set of labels', generate_namespace_project_labels_path(@project.namespace, @project), method: :post, class: 'btn btn-success btn-inverted', title: 'Generate a default set of labels', id: 'generate_labels_link'
|