Subversion Repositories SmartDukaan

Rev

Rev 2714 | 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>Received</th>
                <th>Delivered</th>
                <th>Amount</th>
                <th>Shipping Address</th>
            </tr>
        </thead>
        <tbody>
            #foreach($order in $action.getUserOrders())
            <tr>
                <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("received")</td>
                <td>#if($order.get("delivered")) $order.get("delivered") #end</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>