blob: e84199b3193497a5fb1c6c110013cfa2b78ca6aa (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
<h1>Menu Items</h1>
<%= link_to 'New menu item', new_menu_item_path, class: 'action_button' %>
<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 "Delete", menu_item_path(menu_item),
method: :delete,
form: { data: { confirm: "Are you sure?" }, class: 'button_to destructive' } %>
</td>
</tr>
<% end %>
</table>
|