Subversion Repositories SmartDukaan

Rev

Rev 2714 | Rev 3853 | Go to most recent revision | Blame | Compare with Previous | Last modification | View Log | RSS feed

<div id="top-infopane">
    <table id="user-orders" class="display">
        <thead>
            <tr>
                <th>Id</th>
                <th>Created</th>
                <th>Status</th>
                <th>Amount</th>
                <th>Shipping Address</th>
            </tr>
        </thead>
        <tbody>
            #foreach($order in $action.getUserOrders())
            <tr id="order-row-$order.get("id")">
                <td>
                    <a alt="Show Order Details" title="Show Order Details" href="#" userId="$action.getUserId()" orderId="$order.get("id")" class="show-order-details">
                        $order.get("id")
                    </a>                    
                </td>
                <td>$order.get("created")</td>
                <td>$order.get("status")</td>
                <td>$order.get("amount")</td>
                <td title="$order.get("shipping")">$order.get("city")</td>
            </tr>
            #end
            </tbody>
    </table>
</div>
<div id="bottom-infopane">
</div>