Moved to Netbeans 6.5. Started order creation
[depot.git] / app / views / orders / show.html.erb
1 <p>
2 <b>Name:</b>
3 <%=h @order.name %>
4 </p>
5
6 <p>
7 <b>Address:</b>
8 <%=h @order.address %>
9 </p>
10
11 <p>
12 <b>Email:</b>
13 <%=h @order.email %>
14 </p>
15
16 <p>
17 <b>Pay type:</b>
18 <%=h @order.pay_type %>
19 </p>
20
21
22 <%= link_to 'Edit', edit_order_path(@order) %> |
23 <%= link_to 'Back', orders_path %>