Subversion Repositories SmartDukaan

Rev

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

<div class="row">
        <div class="col-lg-12">
                <table class="table table-striped table-advance table-hover">
                        <tbody>
                                <tr>
                                        <th>Request Id</th>
                                        <th>Operator</th>
                                        <th>Number</th>
                                        <th>Amount</th>
                                        <th>Status</th>
                                        <th>Status Message</th>
                                        <th>Created On</th>
                                        <th>Updated On</th>
                                </tr>
                                #if(!$rechargeTransactions.isEmpty())
                                #foreach( $rechargeTransaction in $rechargeTransactions )
                                        <tr class="dth-recharge-details" data="$rechargeTransaction.getId()">
                                                <td>$rechargeTransaction.getRequestId()</td>
                                                <td>$rechargeOperatorIdRechargeOperatorNameMap.get($rechargeTransaction.getOperatorId())</td>
                                                <td>$rechargeTransaction.getReferenceNumber()</td>
                                                <td>$rechargeTransaction.getAmount()</td>
                                                <td>$rechargeTransaction.getStatus()</td>
                                                <td>$rechargeTransaction.getStatusMessage()</td>
                                                <td>$rechargeTransaction.getFormattedCreateTimestamp()</td>
                                                <td>$rechargeTransaction.getFormattedUpdateTimestamp()</td>
                                        </tr>
                                #end
                        #else
                                <tr>
                                        <td colspan="12" style="text-align:center;">NO MATCHING DATA FOUND FOR CRITERIA</td>
                                </tr>
                        #end
                        </tbody>
                </table>
        </div>
</div>