Add modal for label deletion
This commit is contained in:
parent
af6aaf39f9
commit
0ef1a582b6
3 changed files with 30 additions and 3 deletions
|
@ -4,6 +4,10 @@
|
||||||
|
|
||||||
.page-title {
|
.page-title {
|
||||||
margin-top: 0;
|
margin-top: 0;
|
||||||
|
|
||||||
|
.label {
|
||||||
|
font-size: initial;
|
||||||
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
20
app/views/shared/_delete_label_modal.html.haml
Normal file
20
app/views/shared/_delete_label_modal.html.haml
Normal file
|
@ -0,0 +1,20 @@
|
||||||
|
.modal{ id: "modal-delete-label-#{label.id}", tabindex: -1 }
|
||||||
|
.modal-dialog
|
||||||
|
.modal-content
|
||||||
|
.modal-header
|
||||||
|
%button.close{ data: {dismiss: 'modal' } } ×
|
||||||
|
%h3.page-title Delete #{render_colored_label(label, tooltip: false)} ?
|
||||||
|
|
||||||
|
.modal-body
|
||||||
|
%p
|
||||||
|
%strong #{label.name}
|
||||||
|
will be permanently deleted from #{label.group.name}. This cannot be undone.
|
||||||
|
|
||||||
|
.modal-footer
|
||||||
|
%a{ href: '#', data: { dismiss: 'modal' }, class: 'btn btn-default' } Cancel
|
||||||
|
|
||||||
|
= link_to 'Delete label',
|
||||||
|
destroy_label_path(label),
|
||||||
|
title: 'Delete',
|
||||||
|
method: :delete,
|
||||||
|
class: 'btn btn-remove'
|
|
@ -55,9 +55,10 @@
|
||||||
= link_to edit_label_path(label), title: "Edit", class: 'btn btn-transparent btn-action', data: {toggle: "tooltip"} do
|
= link_to edit_label_path(label), title: "Edit", class: 'btn btn-transparent btn-action', data: {toggle: "tooltip"} do
|
||||||
%span.sr-only Edit
|
%span.sr-only Edit
|
||||||
= sprite_icon('pencil')
|
= sprite_icon('pencil')
|
||||||
= link_to destroy_label_path(label), title: "Delete", class: 'btn btn-transparent btn-action remove-row', method: :delete, data: {confirm: label_deletion_confirm_text(label), toggle: "tooltip"} do
|
%span{ data: { toggle: 'modal', target: "#modal-delete-label-#{label.id}" } }
|
||||||
%span.sr-only Delete
|
= link_to "#", title: "Delete", class: 'btn btn-transparent btn-action remove-row', data: { toggle: "tooltip" } do
|
||||||
= sprite_icon('remove')
|
%span.sr-only Delete
|
||||||
|
= sprite_icon('remove')
|
||||||
- if current_user
|
- if current_user
|
||||||
.label-subscription.inline
|
.label-subscription.inline
|
||||||
- if can_subscribe_to_label_in_different_levels?(label)
|
- if can_subscribe_to_label_in_different_levels?(label)
|
||||||
|
@ -79,3 +80,5 @@
|
||||||
%button.js-subscribe-button.label-subscribe-button.btn.btn-default{ type: 'button', data: { status: status, url: toggle_subscription_path } }
|
%button.js-subscribe-button.label-subscribe-button.btn.btn-default{ type: 'button', data: { status: status, url: toggle_subscription_path } }
|
||||||
%span= label_subscription_toggle_button_text(label, @project)
|
%span= label_subscription_toggle_button_text(label, @project)
|
||||||
= icon('spinner spin', class: 'label-subscribe-button-loading')
|
= icon('spinner spin', class: 'label-subscribe-button-loading')
|
||||||
|
|
||||||
|
= render 'shared/delete_label_modal', label: label
|
||||||
|
|
Loading…
Reference in a new issue