2014-09-02 18:07:02 +05:30
|
|
|
%li{id: dom_id(label)}
|
|
|
|
= render_colored_label(label)
|
|
|
|
.pull-right
|
|
|
|
%strong.append-right-20
|
2015-04-26 12:48:37 +05:30
|
|
|
= link_to namespace_project_issues_path(@project.namespace, @project, label_name: label.name) do
|
2014-09-02 18:07:02 +05:30
|
|
|
= pluralize label.open_issues_count, 'open issue'
|
|
|
|
|
|
|
|
- if can? current_user, :admin_label, @project
|
2015-04-26 12:48:37 +05:30
|
|
|
= 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?"}
|