61 lines
1.9 KiB
HTML
Executable File
61 lines
1.9 KiB
HTML
Executable File
<!-- start: UI BOOTSTRAP MODALS -->
|
|
<div class="container-fluid container-fullw bg-grey">
|
|
<!-- /// controller: 'ModalDemoCtrl' - localtion: assets/js/controllers/bootstrapCtrl.js /// -->
|
|
<div ng-controller="studentModalDemoCtrl">
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
<table class="table" class="table" ng-if="selectedtype=='1'">
|
|
<thead>
|
|
<tr>
|
|
<th>Installment</th>
|
|
<th>Amount</th>
|
|
<th>Due Date</th>
|
|
|
|
</tr>
|
|
</thead>
|
|
<tbody ng-repeat="l in items1.InstallmentDetails">
|
|
<tr>
|
|
<td>{{l.Name}}</td>
|
|
|
|
<td>{{l.Amount}}</td>
|
|
<td>{{l.DueDate}}</td>
|
|
|
|
</tr>
|
|
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
<table class="table" ng-if="selectedtype=='2'">
|
|
<thead>
|
|
<tr>
|
|
<th>Bill NO</th>
|
|
<th>Bill Amount</th>
|
|
<th>Bill Date</th>
|
|
<th>Receipt NO</th>
|
|
<th>Mode of Payment </th>
|
|
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr ng-repeat="v in items1.paidDetails">
|
|
<td>{{v.BillNO}}</td>
|
|
<td>{{v.BillAmount}}</td>
|
|
<td>{{v.BillDate}}</td>
|
|
<td>{{v.ReceiptNo}}</td>
|
|
<td>{{v.ModeOfPayment}}</td>
|
|
|
|
</tr>
|
|
|
|
</table>
|
|
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- end: UI BOOTSTRAP MODALS -->
|
|
|
|
|