2014-07-31 07:06:14 -04:00
|
|
|
%li{id: dom_id(label)}
|
2016-02-19 00:34:45 -05:00
|
|
|
= render "shared/label_row", label: label
|
|
|
|
|
|
|
|
.pull-right
|
2016-03-01 21:07:08 -05:00
|
|
|
%strong.append-right-20
|
|
|
|
= link_to_label(label, type: :merge_request) do
|
|
|
|
= pluralize label.open_merge_requests_count, 'open merge request'
|
|
|
|
|
2016-02-19 00:34:45 -05:00
|
|
|
%strong.append-right-20
|
|
|
|
= link_to_label(label) do
|
|
|
|
= pluralize label.open_issues_count, 'open issue'
|
|
|
|
|
2016-02-12 09:58:39 -05:00
|
|
|
- if current_user
|
|
|
|
%div{class: "label-subscription", data: {id: label.id}}
|
|
|
|
- subscribed = label.subscribed?(current_user)
|
|
|
|
- subscription_status = subscribed ? 'subscribed' : 'unsubscribed'
|
|
|
|
.subscription-status{data: {status: subscription_status}}
|
|
|
|
%button.btn.btn-sm.btn-info.subscribe-button{:type => 'button'}
|
|
|
|
%span= subscribed ? 'Unsubscribe' : 'Subscribe'
|
|
|
|
|
2016-02-19 00:34:45 -05:00
|
|
|
- if can? current_user, :admin_label, @project
|
|
|
|
= link_to 'Edit', edit_namespace_project_label_path(@project.namespace, @project, label), class: 'btn btn-sm'
|
|
|
|
= link_to 'Delete', 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?"}
|
2016-02-12 09:58:39 -05:00
|
|
|
|
|
|
|
:javascript
|
|
|
|
new Subscription("#{toggle_subscription_namespace_project_label_path(@project.namespace, @project, label)}",
|
|
|
|
".label-subscription[data-id='#{label.id}']");
|