Subversion Repositories SmartDukaan

Rev

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

<div class="row">
    <div class="col-lg-12">

        <h4 class="modelHeaderCustom" style="font-size:18px;">$customretailer.getBusinessName()
            ($customretailer.getEmail())</h4>
        <h4 class="modelHeaderCustom" style="font-size:22px;">Amount:- $userWallet.getAmount()</h4>
    </div>
</div>

<div id="reference-table">
    <div class="row">
        <div class="col-lg-12">
            <table class="table table-striped table-advance table-hover">
                <tbody>
                <tr>
                    <th>Description</th>
                    <th>Amount</th>
                    <th>Reference</th>
                    <th>Reference Type</th>
                    <th>Timestamp</th>

                </tr>
                    #if(!$wallethistory.isEmpty())
                        #foreach( $wallet in $wallethistory )
                        <tr>
                            <td>$wallet.getDescription()</td>
                            <td class="currency">$wallet.getAmount()</td>
                            <td>$wallet.getReference()</td>
                            <td>$wallet.getReferenceType()</td>
                            <td>$wallet.getTimestamp().format($dateTimeFormatter)</td>

                        </tr>
                        #end
                    #else
                    <tr>
                        <td colspan="5" style="text-align:center;">NO MATCHING DATA FOUND FOR CRITERIA</td>
                    </tr>
                    #end
                </tbody>
            </table>
        </div>
    </div>
</div>