55 lines
2.2 KiB
HTML
55 lines
2.2 KiB
HTML
|
|
<style>
|
|
.modal-content {
|
|
background: #ffffff;
|
|
box-shadow: none;
|
|
width: 150%;
|
|
margin-left: -20%;
|
|
}
|
|
</style>
|
|
<div class="container-fluid container-fullw bg-white">
|
|
|
|
<div class="row">
|
|
<div class="col-md-12">
|
|
|
|
<legend>
|
|
Bill Details
|
|
</legend>
|
|
|
|
|
|
<table class="table">
|
|
<thead>
|
|
<tr>
|
|
<th>Bill No</th>
|
|
<th>Bill Date</th>
|
|
<th>Bill Amount</th>
|
|
<th>Receipt No</th>
|
|
<th>Mode Of Payment</th>
|
|
<th>Comments For Student</th>
|
|
<th>Internal Comments</th>
|
|
|
|
</tr>
|
|
</thead>
|
|
<tbody ng-repeat="p in bill_Details">
|
|
<tr>
|
|
<td>{{p.BillNO}}</td>
|
|
<td>{{p.BillDate}}</td>
|
|
<td>{{p.BillAmount}}</td>
|
|
<td>{{p.ReceiptNo}}</td>
|
|
<td>{{p.ModeOfPayment}}</td>
|
|
<td>{{p.CommentsForStudent}}</td>
|
|
<td>{{p.InternalComments}}</td>
|
|
|
|
</tr>
|
|
|
|
|
|
</tbody>
|
|
|
|
</table>
|
|
|
|
|
|
</div>
|
|
</div>
|
|
|
|
|
|
</div> |