2024-09-05 22:54:38 +02:00
|
|
|
# frozen_string_literal: true
|
|
|
|
|
|
2024-07-16 20:22:59 +02:00
|
|
|
module ElementsHelper
|
2024-11-23 19:10:09 +01:00
|
|
|
def element_menu(element)
|
|
|
|
|
dropdown_menu([
|
|
|
|
|
{ text: "Bearbeiten",
|
|
|
|
|
icon: "pencil",
|
|
|
|
|
href: edit_element_path(element),
|
|
|
|
|
turbo_frame: "modal",
|
|
|
|
|
color: "body" },
|
|
|
|
|
{ text: "Löschen",
|
|
|
|
|
icon: "trash",
|
|
|
|
|
href: element_path(element),
|
|
|
|
|
color: :danger,
|
|
|
|
|
method: :delete,
|
|
|
|
|
confirm: "Bist du sicher?" } ],
|
|
|
|
|
klass: "ms-auto")
|
|
|
|
|
end
|
2024-07-16 20:22:59 +02:00
|
|
|
end
|