Image |
Sku |
Title |
Price |
Tags |
|
<% for product in @products%>
<%= 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?" -%>
|
<% end %>
<%= render :partial => 'shared/paginate', :locals => {:collection => @products, :options => search_options} -%>
|
<% form_for :search do |f| %>
Product Details |
Name |
<%= f.text_field :name, :size=>15 %>
|
Sku |
<%= f.text_field :sku, :size=>15 %>
|
<%=submit_tag "Search"%>
<% end %>
|