blob: c52c1506556f700a16f74cf4f11b89a70de4dac0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
|
<% content_for :subnavigation do %>
<%= link_to "new", new_menu_item_path %>
<% end %>
<h1>Menu Items</h1>
<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?" } } %>
</td>
</tr>
<% end %>
</table>
|