2016-05-02 19:19:46 -04:00
|
|
|
- label_css_id = dom_id(label)
|
2016-06-06 11:59:22 -04:00
|
|
|
%li{id: label_css_id, data: { id: label.id } }
|
2016-02-19 00:34:45 -05:00
|
|
|
= render "shared/label_row", label: label
|
2016-04-02 19:55:59 -04:00
|
|
|
.pull-info-right
|
2016-04-01 13:41:36 -04:00
|
|
|
%span.append-right-20
|
2016-03-01 21:07:08 -05:00
|
|
|
= link_to_label(label, type: :merge_request) do
|
2016-04-01 13:41:36 -04:00
|
|
|
= pluralize label.open_merge_requests_count, 'merge request'
|
2016-03-01 21:07:08 -05:00
|
|
|
|
2016-04-01 13:41:36 -04:00
|
|
|
%span.append-right-20
|
2016-02-19 00:34:45 -05:00
|
|
|
= link_to_label(label) do
|
2016-03-21 19:21:23 -04:00
|
|
|
= pluralize label.open_issues_count(current_user), 'open issue'
|
2016-02-19 00:34:45 -05:00
|
|
|
|
2016-02-12 09:58:39 -05:00
|
|
|
- if current_user
|
2016-05-19 17:49:41 -04:00
|
|
|
.label-subscription{ data: { url: toggle_subscription_namespace_project_label_path(@project.namespace, @project, label) } }
|
|
|
|
.subscription-status{ data: { status: label_subscription_status(label) } }
|
2016-04-01 13:41:36 -04:00
|
|
|
|
2016-04-14 04:13:32 -04:00
|
|
|
%button.js-subscribe-button.label-subscribe-button.btn.action-buttons{ type: "button", data: { toggle: "tooltip" } }
|
2016-04-04 13:38:16 -04:00
|
|
|
%span= label_subscription_toggle_button_text(label)
|
2016-02-12 09:58:39 -05:00
|
|
|
|
2016-06-06 11:59:22 -04:00
|
|
|
- if can?(current_user, :admin_label, @project)
|
2016-05-19 17:49:41 -04:00
|
|
|
= link_to edit_namespace_project_label_path(@project.namespace, @project, label), title: "Edit", class: 'btn action-buttons', data: { toggle: 'tooltip' } do
|
2016-04-01 13:41:36 -04:00
|
|
|
%i.fa.fa-pencil-square-o
|
2016-05-19 17:49:41 -04:00
|
|
|
= link_to namespace_project_label_path(@project.namespace, @project, label), title: "Delete", class: 'btn action-buttons remove-row', method: :delete, remote: true, data: { confirm: 'Remove this label? Are you sure?', toggle: 'tooltip' } do
|
2016-04-01 13:41:36 -04:00
|
|
|
%i.fa.fa-trash-o
|
2016-02-12 09:58:39 -05:00
|
|
|
|
2016-03-01 11:33:13 -05:00
|
|
|
- if current_user
|
|
|
|
:javascript
|
2016-05-02 19:19:46 -04:00
|
|
|
new Subscription('##{label_css_id} .label-subscription');
|