changelog shortlog tags changeset file revisions annotate raw

app/views/order_items/show.html.erb

revision 12: 755229281e85
--- /dev/null	Thu Jan 01 00:00:00 1970 +0000
+++ b/app/views/order_items/show.html.erb	Mon Mar 10 03:51:59 2008 +0900
@@ -0,0 +1,18 @@
+<p>
+  <b>Order:</b>
+  <%=h @order_item.order %>
+</p>
+
+<p>
+  <b>Product:</b>
+  <%=h @order_item.product %>
+</p>
+
+<p>
+  <b>Quantity:</b>
+  <%=h @order_item.quantity %>
+</p>
+
+
+<%= link_to 'Edit', edit_order_item_path(@order_item) %> |
+<%= link_to 'Back', order_items_path %>