Guest

Untitled

By: a guest on Jan 28th, 2012  |  syntax: None  |  size: 0.74 KB  |  hits: 14  |  expires: Never
download  |  raw  |  embed  |  report abuse
Copied
  1. <div class="container">
  2. <div class="span-24"><h1>Listing products</h1></div>
  3.  
  4.  
  5.         <% for product in @products %>
  6.  
  7.         <div class="span-4 colborder">
  8.                 <%= image_tag product.image_url, :class => 'list-image' %>
  9.         </div>
  10.        
  11.         <div class="span-16">
  12.                 <p>     <h3><%=h product.title %></h3></p>
  13.                 <p>     <%=h truncate(product.description.gsub(/<.*?>/, ''),
  14.                                         :length => 80) %></p>
  15.                         </div>
  16.                        
  17.                         <div class="span-4 last">
  18.                                 <%= link_to 'Show', product %><br />
  19.                                 <%= link_to 'Edit', edit_product_path(product) %><br />
  20.                                 <%= link_to 'Destroy', product,
  21.                                                          :confirm => 'Are you sure?',
  22.                                                          :method => :delete %>
  23.                        
  24.                                 <% end %>
  25.                                 </div>
  26.                                 </div>
  27.                                 <br />
  28.                                 <%= link_to 'New product', new_product_path %>