9e9ce95d62
Conflicts: app/views/dashboard/_project.html.haml app/views/events/event/_common.html.haml app/views/explore/projects/_project.html.haml app/views/groups/_projects.html.haml app/views/projects/_home_panel.html.haml app/views/projects/_issues_nav.html.haml app/views/projects/issues/_discussion.html.haml app/views/projects/issues/_issues.html.haml app/views/projects/issues/show.html.haml app/views/projects/merge_requests/_discussion.html.haml app/views/projects/merge_requests/_show.html.haml app/views/projects/milestones/index.html.haml app/views/projects/notes/_edit_form.html.haml app/views/shared/_issuable_filter.html.haml
15 lines
539 B
Text
15 lines
539 B
Text
- if can? current_user, :admin_label, @project
|
|
= link_to new_namespace_project_label_path(@project.namespace, @project), class: "pull-right btn btn-new" do
|
|
New label
|
|
%h3.page-title
|
|
Labels
|
|
%hr
|
|
|
|
.labels
|
|
- if @labels.present?
|
|
%ul.bordered-list.manage-labels-list
|
|
= render @labels
|
|
= paginate @labels, theme: 'gitlab'
|
|
- else
|
|
.light-well
|
|
.nothing-here-block Create first label or #{link_to 'generate', generate_namespace_project_labels_path(@project.namespace, @project), method: :post} default set of labels
|