index.html.erb 752 B

12345678910111213141516171819202122232425262728293031
  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, method: :delete,
  19. data: { confirm: 'Are you sure?' } %>
  20. </td>
  21. </tr>
  22. <% end %>
  23. </table>
  24. <br />
  25. <%= link_to 'New product', new_product_path %>