index.html.erb 852 B

12345678910111213141516171819202122232425262728293031323334
  1. <div id="product_list">
  2. <h1>Listing products</h1>
  3. <table>
  4. <% @products.each do |product| %>
  5. <tr class="<%= cycle('list_line_odd', 'list_line_even') %>">
  6. <td>
  7. <%= image_tag(product.image_url, :class => 'list_image') %>
  8. </td>
  9. <td class="list_description">
  10. <dl>
  11. <dt><%= product.title %></dt>
  12. <dd><%= truncate(strip_tags(product.description),
  13. :length => 80) %></dd>
  14. </dl>
  15. </td>
  16. <td class="list_actions">
  17. <%= link_to 'Show', product %><br/>
  18. <%= link_to 'Edit', edit_product_path(product) %><br/>
  19. <%= link_to 'Destroy', product,
  20. :confirm => 'Are you sure?',
  21. :method => :delete %>
  22. </td>
  23. </tr>
  24. <% end %>
  25. </table>
  26. </div>
  27. <br />
  28. <%= link_to 'New product', new_product_path %>