Displaying 1 result from an estimated 1 matches for "show_dish".
Did you mean:
show_disk
2006 Feb 27
2
Multiple forms on a page
Hello all.
I have the following Code in a view:
<% @dishes.each do |dish| -%>
<tr>
<td><%= link_to dish.name, :controller => "restaurant", :action =>
"show_dish", :id =>"#{dish.id}" -%>
<% if dish.vegetarian? -%>
<%= image_tag("/images/vegetarian.gif", :class => "bevel", :size =>
"8x8") %></td>
<% end -%>
<td><%=h dish.summary -%></td>
<td><%=h dish...