Subversion Repositories SmartDukaan

Rev

Rev 23343 | 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>Invoice Number</th>
                                        <th>Total Amount</th>
                                        <th>Created On</th>
                                        <th>View Details</th>
                                </tr>
                                #foreach( $saleHistory in $saleHistories )
                                <tr class="sale-details" data="$saleHistory.getId()">
                                        <td>$saleHistory.getInvoiceNumber()</td>
                                        <td>$saleHistory.getTotalAmount()</td>
                                        <td>$saleHistory.getFormattedDate()</td>
                                        <td><button class="btn btn-primary">View</button</td>
                                </tr>
                        #end
                        </tbody>
            </table>
        </div>
</div>