Subversion Repositories SmartDukaan

Rev

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

 <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>$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>