debian-mirror-gitlab/app/views/projects/labels/_label.html.haml

11 lines
567 B
Text
Raw Normal View History

2014-09-02 18:07:02 +05:30
%li{id: dom_id(label)}
2015-09-11 14:41:01 +05:30
= link_to_label(label)
2014-09-02 18:07:02 +05:30
.pull-right
%strong.append-right-20
2015-09-11 14:41:01 +05:30
= link_to_label(label) do
2014-09-02 18:07:02 +05:30
= pluralize label.open_issues_count, 'open issue'
- if can? current_user, :admin_label, @project
2015-09-11 14:41:01 +05:30
= link_to 'Edit', edit_namespace_project_label_path(@project.namespace, @project, label), class: 'btn btn-sm'
= link_to 'Remove', namespace_project_label_path(@project.namespace, @project, label), class: 'btn btn-sm btn-remove remove-row', method: :delete, remote: true, data: {confirm: "Remove this label? Are you sure?"}