7 lines
599 B
Text
7 lines
599 B
Text
%li.label-list-item{ id: dom_id(label) }
|
|
= render "shared/label_row", label: label
|
|
.label-actions-list
|
|
= link_to edit_admin_label_path(label), class: 'btn btn-transparent label-action has-tooltip', title: _('Edit'), data: { placement: 'bottom' }, aria_label: _('Edit') do
|
|
= sprite_icon('pencil')
|
|
= link_to admin_label_path(label), class: 'btn btn-transparent remove-row label-action has-tooltip', title: _('Delete'), data: { placement: 'bottom', confirm: "Delete this label? Are you sure?" }, aria_label: _('Delete'), method: :delete, remote: true do
|
|
= sprite_icon('remove')
|