You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
 
 
 
 
 

34 line
764 B

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