summaryrefslogtreecommitdiff
path: root/app/views/groups
diff options
context:
space:
mode:
Diffstat (limited to 'app/views/groups')
-rw-r--r--app/views/groups/labels/_label.html.haml53
-rw-r--r--app/views/groups/labels/_label_row.html.haml6
-rw-r--r--app/views/groups/labels/index.html.haml2
3 files changed, 1 insertions, 60 deletions
diff --git a/app/views/groups/labels/_label.html.haml b/app/views/groups/labels/_label.html.haml
deleted file mode 100644
index 9faf90c303e..00000000000
--- a/app/views/groups/labels/_label.html.haml
+++ /dev/null
@@ -1,53 +0,0 @@
-- label_css_id = dom_id(label)
-- open_issues_count = label.open_issues_count(current_user)
-- open_merge_requests_count = label.open_merge_requests_count(current_user)
-
-%li{id: label_css_id, data: { id: label.id } }
- = render 'label_row', label: label
-
- .visible-xs.visible-sm-inline-block.visible-md-inline-block.dropdown
- %button.btn.btn-default.label-options-toggle{ data: { toggle: 'dropdown' } }
- Options
- %span.caret
- .dropdown-menu.dropdown-menu-align-right
- %ul
- %li
- = link_to_group_label(label, type: :merge_request) do
- = pluralize open_merge_requests_count, 'merge request'
- %li
- = link_to_group_label(label) do
- = pluralize open_issues_count, 'open issue'
- - if current_user
- %li.label-subscription{ data: { url: toggle_subscription_group_label_path(@group, label) } }
- %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)
- - if can? current_user, :admin_label, @group
- %li
- = link_to 'Edit', edit_group_label_path(@group, label)
- %li
- = link_to 'Delete', group_label_path(@group, label), title: 'Delete', method: :delete, remote: true, data: {confirm: "Remove this label? Are you sure?"}
-
- .pull-right.hidden-xs.hidden-sm.hidden-md
- = link_to_group_label(label, type: :merge_request, css_class: 'btn btn-transparent btn-action') do
- = pluralize open_merge_requests_count, 'merge request'
- = link_to_group_label(label, css_class: 'btn btn-transparent btn-action') do
- = pluralize open_issues_count, 'open issue'
-
- - if current_user
- .label-subscription.inline{ data: { url: toggle_subscription_group_label_path(@group, label) } }
- %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')
-
- - if can? current_user, :admin_label, @group
- = link_to edit_group_label_path(@group, label), title: 'Edit', class: 'btn btn-transparent btn-action', data: {toggle: 'tooltip'} do
- %span.sr-only Edit
- = icon('pencil-square-o')
- = link_to group_label_path(@group, 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
- %span.sr-only Delete
- = icon('trash-o')
-
- - if current_user
- :javascript
- new Subscription('##{dom_id(label)} .label-subscription');
diff --git a/app/views/groups/labels/_label_row.html.haml b/app/views/groups/labels/_label_row.html.haml
deleted file mode 100644
index e21fac25b01..00000000000
--- a/app/views/groups/labels/_label_row.html.haml
+++ /dev/null
@@ -1,6 +0,0 @@
-%span.label-row
- %span.label-name
- = link_to_group_label(label, tooltip: false)
- - if label.description
- %span.label-description
- = markdown(label.description, pipeline: :single_line)
diff --git a/app/views/groups/labels/index.html.haml b/app/views/groups/labels/index.html.haml
index d9f1d350cb3..8e93ea4f625 100644
--- a/app/views/groups/labels/index.html.haml
+++ b/app/views/groups/labels/index.html.haml
@@ -17,7 +17,7 @@
Group Labels
- if @labels.present?
%ul.content-list.manage-labels-list.js-group-labels
- = render partial: 'label', collection: @labels, as: :label
+ = render partial: 'shared/label', collection: @labels, as: :label
= paginate @labels, theme: 'gitlab'
- else
.nothing-here-block