124ab7756fce492c1c0b81c591bc175b8d9f7e34
[depot.git] / app / views / products / show.html.erb
1 <p>
2 <b>Title:</b>
3 <%=h @product.title %>
4 </p>
5
6 <p>
7 <b>Description:</b>
8 <%=h @product.description %>
9 </p>
10
11 <p>
12 <b>Image url:</b>
13 <%=h @product.image_url %>
14 </p>
15
16 <p>
17 <b>Price:</b>
18 <%=h @product.price %>
19 </p>
20
21
22 <%= link_to 'Edit', edit_product_path(@product) %> |
23 <%= link_to 'Back', products_path %>