gitlab-org--gitlab-foss/app/views/projects/labels/_label.html.haml
Robert Speicher 4e2ee018c3 Make the actual labels on Labels#index links
Now the user can click the labels themselves or the "X open issues"
text.
2015-05-21 23:43:08 -04:00

10 lines
553 B
Text

%li{id: dom_id(label)}
= link_to_label(label)
.pull-right
%strong.append-right-20
= link_to_label(label) do
= pluralize label.open_issues_count, 'open issue'
- if can? current_user, :admin_label, @project
= link_to 'Edit', edit_namespace_project_label_path(@project.namespace, @project, label), class: 'btn'
= link_to 'Remove', namespace_project_label_path(@project.namespace, @project, label), class: 'btn btn-remove remove-row', method: :delete, remote: true, data: {confirm: "Remove this label? Are you sure?"}