blob: cdc60c63cba529318281b6c286e2894b1efa3fa5 (
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><%= t(".title") %></h1>
<%= link_to new_menu_item_path, class: 'action_button' do %>
<%= icon("plus", library: "tabler", "aria-hidden": true) %> <%= t(".create_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 t("admin.common.edit"), edit_menu_item_path(menu_item) %></td>
<td>
<%= button_to menu_item_path(menu_item), method: :delete,
form: { data: { confirm: t(".confirm_destroy") }, class: 'button_to destructive' } do %>
<%= icon("trash", library: "tabler", "aria-hidden": true) %> <%= t("admin.common.destroy") %>
<% end %>
</td>
</tr>
<% end %>
</table>
|