show.html.erb 384 B

123456789101112131415161718192021222324
  1. <p id="notice"><%= notice %></p>
  2. <p>
  3. <strong>Title:</strong>
  4. <%= @product.title %>
  5. </p>
  6. <p>
  7. <strong>Description:</strong>
  8. <%= @product.description %>
  9. </p>
  10. <p>
  11. <strong>Image url:</strong>
  12. <%= @product.image_url %>
  13. </p>
  14. <p>
  15. <strong>Price:</strong>
  16. <%= @product.price %>
  17. </p>
  18. <%= link_to 'Edit', edit_product_path(@product) %> |
  19. <%= link_to 'Back', products_path %>