index.html.erb 761 B

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