Last change
on this file since 138 was
113,
checked in by ecprice, 17 years ago
|
Initial import of web interface.
|
File size:
509 bytes
|
Line | |
---|
1 | <html> |
---|
2 | <head><title>Status for order #$order.id</title></head> |
---|
3 | <body> |
---|
4 | <p>[You are logged in as $user.]</p> |
---|
5 | <p> |
---|
6 | #if ($order.hasShipped()) |
---|
7 | Your order has shipped. Your tracking number is $order.trackingNumber. |
---|
8 | #else |
---|
9 | Your order has not yet shipped. |
---|
10 | #end if |
---|
11 | </p> |
---|
12 | <p>Order #$order.id contains the following items:</p> |
---|
13 | <ul> |
---|
14 | #for $purchased, $quantity in $order.purchased: |
---|
15 | <li>$purchased: $quantity unit#slurp |
---|
16 | #if ($quantity != 1) |
---|
17 | s |
---|
18 | #end if |
---|
19 | </li> |
---|
20 | #end for |
---|
21 | </ul> |
---|
22 | <hr /> |
---|
23 | Served by Online Store v1.0 |
---|
24 | </body> |
---|
25 | </html> |
---|
Note: See
TracBrowser
for help on using the repository browser.