Created tables, product scaffold
[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
17 <%= link_to 'Edit', edit_product_path(@product) %> |
18 <%= link_to 'Back', products_path %>