blob: 591eb68d1331d87670b9451cdf39cffd4b8e22b8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<h1>Menu Items</h1>
<%= link_to new_menu_item_path, class: 'action_button' do %>
<%= icon("plus", library: "tabler", "aria-hidden": true) %> Create menu item
<% end %>
<table id="menu_item_list">
<% @menu_items.each do |menu_item| %>
<tr id="menu_items-<%= menu_item.id %>">
<td class="menu_sort_handle">
<div></div>
</td>
<td class="menu_item_title"><%= menu_item.title %></td>
<td><%= link_to "Edit", edit_menu_item_path(menu_item) %></td>
<td>
<%= button_to menu_item_path(menu_item), method: :delete,
form: { data: { confirm: "Do you really want to destroy the menu entry?" }, class: 'button_to destructive' } do %>
<%= icon("trash", library: "tabler", "aria-hidden": true) %> Destroy
<% end %>
</td>
</tr>
<% end %>
</table>
|