Moved to Netbeans 6.5. Started order creation
[depot.git] / app / views / line_items / show.html.erb
1 <p>
2 <b>Product:</b>
3 <%=h @line_item.product_id %>
4 </p>
5
6 <p>
7 <b>Order:</b>
8 <%=h @line_item.order_id %>
9 </p>
10
11 <p>
12 <b>Quantity:</b>
13 <%=h @line_item.quantity %>
14 </p>
15
16 <p>
17 <b>Total price:</b>
18 <%=h @line_item.total_price %>
19 </p>
20
21
22 <%= link_to 'Edit', edit_line_item_path(@line_item) %> |
23 <%= link_to 'Back', line_items_path %>