CA-Hackathon-Term2/app/views/products/show.html.erb
2017-10-19 15:00:34 +11:00

19 lines
316 B
Text

<p id="notice"><%= notice %></p>
<p>
<strong>Photo:</strong>
<%= @product.photo %>
</p>
<p>
<strong>Description:</strong>
<%= @product.description %>
</p>
<p>
<strong>Price:</strong>
<%= @product.price %>
</p>
<%= link_to 'Edit', edit_product_path(@product) %> |
<%= link_to 'Back', products_path %>