Subversion Repositories SmartDukaan

Rev

Blame | 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>Brand</th>
                                                <th>Model Name</th>
                                                <th>Invoice Number</th>
                                                <th>Serial Number</th>
                                                <th>Product Name</th>
                                                <th>Provider</th>
                                                <th>Amount</th>
                                                <th>Create Date</th>
                                        </tr>
                                        #if(!$insurancePolicies.isEmpty())
                                                #foreach( $insurancePolicy in $insurancePolicies )
                                                        <tr>
                                                                <td>$insurancePolicy.getBrand()</td>
                                                                <td>$insurancePolicy.getModelName()</td>
                                                                <td>$insurancePolicy.getInvoiceNumber()</td>
                                                                <td>$insurancePolicy.getSerialNumber()</td>
                                                                <td>$insurancePolicy.getProductName()</td>
                                                                <td>$providerPolicyNameAndIdMap.get($insurancePolicy.getProviderId())</td>
                                                                <td>$insurancePolicy.getSaleAmount()</td>
                                                                <td>$insurancePolicy.getFormattedCreateTimestamp()</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>