Model menus, modal edit and layout improvements
This commit is contained in:
parent
7b0f05a448
commit
70500c49a1
35 changed files with 1079 additions and 148 deletions
|
|
@ -1,2 +1,27 @@
|
|||
module PagesHelper
|
||||
def page_menu(page)
|
||||
dropdown_menu([
|
||||
{
|
||||
text: "Alle zu [s]",
|
||||
href: "#",
|
||||
action: "click->details-list#closeAll"
|
||||
},
|
||||
{
|
||||
text: "Alle auf [a]",
|
||||
href: "#",
|
||||
action: "click->details-list#openAll"
|
||||
},
|
||||
{ text: "Bearbeiten",
|
||||
icon: "pencil",
|
||||
href: edit_page_path(page),
|
||||
turbo_frame: "modal",
|
||||
color: "body" },
|
||||
{ text: "Löschen",
|
||||
icon: "trash",
|
||||
href: page_path(page),
|
||||
color: :danger,
|
||||
method: :delete,
|
||||
confirm: "Bist du sicher?" } ],
|
||||
klass: "ms-auto")
|
||||
end
|
||||
end
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue