2016-05-02 19:19:46 -04:00
|
|
|
- label_css_id = dom_id(label)
|
2016-09-19 23:09:57 -04:00
|
|
|
- open_issues_count = label.open_issues_count(current_user, @project)
|
|
|
|
- open_merge_requests_count = label.open_merge_requests_count(current_user, @project)
|
|
|
|
|
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-03-01 21:07:08 -05:00
|
|
|
|
2016-05-24 05:29:26 -04:00
|
|
|
.visible-xs.visible-sm-inline-block.visible-md-inline-block.dropdown
|
|
|
|
%button.btn.btn-default.label-options-toggle{ data: { toggle: "dropdown" } }
|
|
|
|
Options
|
2016-08-23 12:02:52 -04:00
|
|
|
= icon('caret-down')
|
2016-05-24 05:29:26 -04:00
|
|
|
.dropdown-menu.dropdown-menu-align-right
|
|
|
|
%ul
|
|
|
|
%li
|
|
|
|
= link_to_label(label, type: :merge_request) do
|
2016-09-19 23:09:57 -04:00
|
|
|
= pluralize open_merge_requests_count, 'merge request'
|
2016-05-24 05:29:26 -04:00
|
|
|
%li
|
|
|
|
= link_to_label(label) do
|
2016-09-19 23:09:57 -04:00
|
|
|
= pluralize open_issues_count, 'open issue'
|
2016-05-24 05:29:26 -04:00
|
|
|
- if current_user
|
2016-09-20 12:54:29 -04:00
|
|
|
%li.label-subscription{ data: { url: toggle_subscription_label_path(label) } }
|
2016-05-24 05:29:26 -04:00
|
|
|
%a.js-subscribe-button.label-subscribe-button.subscription-status{ role: "button", href: "#", data: { toggle: "tooltip", status: label_subscription_status(label) } }
|
|
|
|
%span= label_subscription_toggle_button_text(label)
|
2016-09-20 14:50:11 -04:00
|
|
|
- if can?(current_user, :admin_label, label)
|
2016-05-24 05:29:26 -04:00
|
|
|
%li
|
2016-09-19 23:09:57 -04:00
|
|
|
= link_to 'Edit', edit_label_path(label)
|
2016-05-24 05:29:26 -04:00
|
|
|
%li
|
2016-09-19 23:09:57 -04:00
|
|
|
= link_to 'Delete', destroy_label_path(label), title: 'Delete', method: :delete, remote: true, data: {confirm: 'Remove this label? Are you sure?'}
|
2016-02-19 00:34:45 -05:00
|
|
|
|
2016-05-24 05:29:26 -04:00
|
|
|
.pull-right.hidden-xs.hidden-sm.hidden-md
|
|
|
|
= link_to_label(label, type: :merge_request, css_class: 'btn btn-transparent btn-action') do
|
2016-09-19 23:09:57 -04:00
|
|
|
= pluralize open_merge_requests_count, 'merge request'
|
2016-05-24 05:29:26 -04:00
|
|
|
= link_to_label(label, css_class: 'btn btn-transparent btn-action') do
|
2016-09-19 23:09:57 -04:00
|
|
|
= pluralize open_issues_count, 'open issue'
|
2016-04-01 13:41:36 -04:00
|
|
|
|
2016-05-24 05:29:26 -04:00
|
|
|
- if current_user
|
2016-09-20 12:54:29 -04:00
|
|
|
.label-subscription.inline{ data: { url: toggle_subscription_label_path(label) } }
|
2016-05-25 04:43:03 -04:00
|
|
|
%button.js-subscribe-button.label-subscribe-button.btn.btn-transparent.btn-action.subscription-status{ type: "button", title: label_subscription_toggle_button_text(label), data: { toggle: "tooltip", status: label_subscription_status(label) } }
|
|
|
|
%span.sr-only= label_subscription_toggle_button_text(label)
|
|
|
|
= icon('eye', class: 'label-subscribe-button-icon')
|
|
|
|
= icon('spinner spin', class: 'label-subscribe-button-loading')
|
2016-02-12 09:58:39 -05:00
|
|
|
|
2016-09-20 14:50:11 -04:00
|
|
|
- if can?(current_user, :admin_label, label)
|
2016-09-19 23:09:57 -04:00
|
|
|
= link_to edit_label_path(label), title: "Edit", class: 'btn btn-transparent btn-action', data: {toggle: "tooltip"} do
|
2016-05-24 05:29:26 -04:00
|
|
|
%span.sr-only Edit
|
2016-05-25 04:43:03 -04:00
|
|
|
= icon('pencil-square-o')
|
2016-09-19 23:09:57 -04:00
|
|
|
= link_to destroy_label_path(label), title: "Delete", class: 'btn btn-transparent btn-action remove-row', method: :delete, remote: true, data: {confirm: "Remove this label? Are you sure?", toggle: "tooltip"} do
|
2016-05-24 05:29:26 -04:00
|
|
|
%span.sr-only Delete
|
2016-05-25 04:43:03 -04:00
|
|
|
= icon('trash-o')
|
2016-02-12 09:58:39 -05:00
|
|
|
|
2016-05-24 05:29:26 -04:00
|
|
|
- if current_user
|
|
|
|
:javascript
|
|
|
|
new Subscription('##{dom_id(label)} .label-subscription');
|