Subversion Repositories SmartDukaan

Rev

Rev 9164 | Blame | Compare with Previous | Last modification | View Log | RSS feed

<div id="top-infopane">
    <table id="recharge-orders" class="display">
        <thead>
            <tr>
                <th>Recharge Id</th>
                <th>Description</th>
                <th>Created</th>
                <th>Amount</th>
                <th>Status</th>
                <th>Device No</th>
            </tr>
        </thead>
        <tbody>
            #foreach($rechargeOrder in $action.getRechargeOrders())
            <tr id="order-row-$rechargeOrder.getId()">
                <td>
                                        <a alt="Show Order Details" title="Show Order Details" href="#" userId="$action.getUserId()" orderId="$rechargeOrder.getId()" class="show-recharge-details">
                        $rechargeOrder.getDisplayId() 
                    </a>
                </td>
                                #if($rechargeOrder.getDescription())
                                        #set($description = $rechargeOrder.getDescription())
                                #else
                                        #set($description = "N/A")
                                #end
                <td class="truncated-text" truncatedTextWidth="230">$rechargeOrder.getDescription()</td>
                <td>$action.convertDate($rechargeOrder.getCreationTimestamp())</td>
                <td>$rechargeOrder.getTotalAmount()</td>
                <td class="truncated-text" truncatedTextWidth="140">$rechargeOrder.getStatus().toString()</td>
                <td>$rechargeOrder.getDeviceNumber()</td>
            </tr>
            #end
            </tbody>
    </table>
</div>
<div id="bottom-infopane">
</div>