<%= render :partial => 'menu' -%> <%= link_to "Add Product", :action => 'new' -%>

Listing products

<% for product in @products%> <% end %>
Image Sku Title Price Tags
<%= mini_image(product) %> <%=product.sku%> <%=product.name%> <%=product.price%> <%=product.tag_list%> <%= link_to "Show", :action => 'show', :id => product -%> <%= link_to "Edit", :action => 'edit', :id => product -%> <%= link_to "Delete", {:action => 'destroy', :id => product}, :confirm => "Are you sure you want to delete this product?" -%>
<%= render :partial => 'shared/paginate', :locals => {:collection => @products, :options => search_options} -%>
<% form_for :search do |f| %>
<%=submit_tag "Search"%>
<% end %>