index.html.erb 664 B

123456789101112131415161718192021222324252627282930
  1. <h1>Listing products</h1>
  2. <table>
  3. <tr>
  4. <th>Title</th>
  5. <th>Description</th>
  6. <th>Image url</th>
  7. <th>Price</th>
  8. <th></th>
  9. <th></th>
  10. <th></th>
  11. </tr>
  12. <% @products.each do |product| %>
  13. <tr>
  14. <td><%= product.title %></td>
  15. <td><%= product.description %></td>
  16. <td><%= product.image_url %></td>
  17. <td><%= product.price %></td>
  18. <td><%= link_to 'Show', product %></td>
  19. <td><%= link_to 'Edit', edit_product_path(product) %></td>
  20. <td><%= link_to 'Destroy', product, :confirm => 'Are you sure?',
  21. :method => :delete %></td>
  22. </tr>
  23. <% end %>
  24. </table>
  25. <br />
  26. <%= link_to 'New Product', new_product_path %>