Subversion Repositories SmartDukaan

Rev

Rev 3499 | Rev 3996 | Go to most recent revision | Details | Compare with Previous | Last modification | View Log | RSS feed

Rev Author Line No. Line
2674 vikas 1
<div id="top-infopane">
2
    <table id="user-orders" class="display">
3
        <thead>
4
            <tr>
3499 mandeep.dh 5
                <th>Order Id</th>
2730 vikas 6
                <th>Created</th>
2714 vikas 7
                <th>Status</th>
2674 vikas 8
                <th>Amount</th>
3853 mandeep.dh 9
                <th>Mobile No</th>
2674 vikas 10
                <th>Shipping Address</th>
11
            </tr>
12
        </thead>
13
        <tbody>
14
            #foreach($order in $action.getUserOrders())
2714 vikas 15
            <tr id="order-row-$order.get("id")">
2674 vikas 16
                <td>
17
                    <a alt="Show Order Details" title="Show Order Details" href="#" userId="$action.getUserId()" orderId="$order.get("id")" class="show-order-details">
18
                        $order.get("id")
3853 mandeep.dh 19
                    </a>
2674 vikas 20
                </td>
2714 vikas 21
                <td>$order.get("created")</td>
22
                <td>$order.get("status")</td>
2674 vikas 23
                <td>$order.get("amount")</td>
3853 mandeep.dh 24
                <td>$order.get("mobileNumber")</td>
2674 vikas 25
                <td title="$order.get("shipping")">$order.get("city")</td>
26
            </tr>
27
            #end
28
            </tbody>
29
    </table>
30
</div>
31
<div id="bottom-infopane">
32
</div>