show.html.erb 345 B

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