blob: f4316bf0d6017d5016d9ac11ac9824d91acc1a35 (
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><%= menu_item.title %></td>
<td><%= link_to "Edit", edit_menu_item_path(menu_item) %></td>
<td>
<%= link_to(
"Delete",
menu_item_path(menu_item),
:method => :delete,
:confirm => "Are you sure?"
) %>
</td>
</tr>
<% end %>
</table>
|