167 lines
7.5 KiB
HTML
Executable File
167 lines
7.5 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>
|
|
<ul ng-if="selectedtype=='3' && items1!=false" >
|
|
<label style="background-color:black;">Batch History</label>
|
|
<li ng-repeat="bh in items1" style="background-color:black;">
|
|
<div> <b>{{bh.UpdatedBy}}</b> Updated The Batch On {{bh.UpdatedOn}} <i>{{bh.ExistValue}}</i> into <i>{{bh.NewValue}}</i> in {{bh.Sem}}</div>
|
|
</li>
|
|
</ul>
|
|
<center ng-if="selectedtype=='3' && items1==false" > Batch History Not Found </center>
|
|
|
|
<table class="table" ng-if="selectedtype=='4'">
|
|
<thead>
|
|
<tr>
|
|
<th>Date</th>
|
|
<th>Batch</th>
|
|
<th>SEM/YEAR</th>
|
|
<th>Form Type</th>
|
|
<th >Status</th>
|
|
<th>Comments</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr ng-repeat="apps in items1">
|
|
<td><span>{{apps.StatusUpdateDate}}</span></td>
|
|
<td><span>{{apps.BatchName}}</span></td>
|
|
<td><span>{{apps.Sem_Year}}</span></td>
|
|
<td><span>{{apps.RegistrationType}}</span></td>
|
|
<td><span>{{apps.ListName}} </span></td>
|
|
<td><span>{{apps.Comments}}</span></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
|
|
<table class="table" ng-if="selectedtype=='5'">
|
|
<thead>
|
|
<tr>
|
|
<th>Date</th>
|
|
<th>Sem/Year</th>
|
|
<th>Status</th>
|
|
<th>Answer Book Serial No</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr ng-repeat="booklet in items1">
|
|
<td><span>{{booklet.AnsDate}}</span></td>
|
|
<td><span>{{booklet.Sem}}</span></td>
|
|
<td><span>{{booklet.ListName}}</span></td>
|
|
<td><span>{{booklet.Comments}}</span></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
<table class="table" ng-if="selectedtype=='6'">
|
|
<thead>
|
|
<tr><th>Date</th>
|
|
<th>Certificate Name</th>
|
|
<th>Status</th>
|
|
<th>Comments</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr ng-repeat="cert in items1">
|
|
<td><span>{{cert.AppDate}}</span></td>
|
|
<td><span>{{cert.CertificateName}}</span></td>
|
|
<td><span>{{cert.ListName}} </span></td>
|
|
<td><span>{{cert.Comments}}</span></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
|
|
<table class="table" ng-if="selectedtype=='7'">
|
|
<thead>
|
|
<tr>
|
|
<th>Date</th>
|
|
<th>Sem/Year</th>
|
|
<th>Status</th>
|
|
<th>Comments</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr ng-repeat="v in items1">
|
|
<td>{{v.CDate}}</td>
|
|
<!-- <td>{{v.Sem_Year}} ({{v.Sem}})</td> -->
|
|
<td>{{v.Sem}}</td>
|
|
<td>{{v.ListName}}</td>
|
|
<td>{{v.Comments}}</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<table class="table" ng-if="selectedtype=='8'">
|
|
<thead>
|
|
<tr>
|
|
<th>Date</th>
|
|
<th>Sem/Year</th>
|
|
<th>Status</th>
|
|
<th>Comments</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr ng-repeat="study in items1">
|
|
<td><span>{{study.SDate}}</span></td>
|
|
<!-- <td><span>{{study.Sem_Year}} ({{study.Sem}})</span></td> -->
|
|
<td><span>{{study.Sem}}</span></td>
|
|
<td><span>{{study.ListName}} </span></td>
|
|
<td><span>{{study.Comments}}</span></td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
</div>
|
|
|
|
</div>
|
|
</div>
|
|
</div>
|
|
</div>
|
|
<!-- end: UI BOOTSTRAP MODALS -->
|
|
|
|
|