14 lines
251 B
Text
14 lines
251 B
Text
<p style="color: green"><%= notice %></p>
|
|
|
|
<h1>Menus</h1>
|
|
|
|
<div id="menus">
|
|
<% @menus.each do |menu| %>
|
|
<%= render menu %>
|
|
<p>
|
|
<%= link_to "Show this menu", menu %>
|
|
</p>
|
|
<% end %>
|
|
</div>
|
|
|
|
<%= link_to "New menu", new_menu_path %>
|