changelog shortlog tags changeset manifest revisions annotate raw

app/views/order_items/show.html.erb

changeset 12: 755229281e85
author: moriq <moriq@moriq.com>
date: Mon Mar 10 03:51:59 2008 +0900 (16 years ago)
permissions: -rw-r--r--
description: add scaffold order_item.
1<p>
2 <b>Order:</b>
3 <%=h @order_item.order %>
4</p>
5
6<p>
7 <b>Product:</b>
8 <%=h @order_item.product %>
9</p>
10
11<p>
12 <b>Quantity:</b>
13 <%=h @order_item.quantity %>
14</p>
15
16
17<%= link_to 'Edit', edit_order_item_path(@order_item) %> |
18<%= link_to 'Back', order_items_path %>