apollodec/Apollo/assets/views/edit_course.html
venbatechnologies@gmail.com 64a902279d data correction
2018-09-11 11:40:18 +05:30

118 lines
4.5 KiB
HTML

<form name="Form" id="form" novalidate>
<div class="row">
<div class="col-md-12">
<div class="col-md-12">
<fieldset>
<legend>
Fee Paid Details
</legend>
<div>
<input type="hidden" name="ID" id="ID" ng-model="p.ID">
</div>
<div>
<input type="hidden" name="stuid" ng-model="p.StudentID">
</div>
<div>
<input type="hidden" name="uniid" ng-model="p.UniversityID">
</div>
<div>
<input type="hidden" name="courseid" ng-model="p.CourseID">
</div>
<div>
<input type="hidden" name="FeesID" ng-model="p.FeesID">
</div>
<!-- {{feeInfo}} -->
<!-- <div ng-if="feecheck==true">
<div align="center" style="font-weight: bold; font-size:20 ">
{{loadfee}}
</div>
</div> -->
<div ng-if="courselist == false" class="text-center">
<h3>No Records Found</h3>
</div>
<div class="col-md-12" ng-if="courselist == true">
<!-- {{feeInfo}} -->
<div class="table-responsive">
<table id="datatable" class="table table-hover">
<thead>
<tr >
<th style="font-size: 12px;">BillNO</th>
<th style="font-size: 12px;">Receipt No</th>
<th style="font-size: 12px">Bill Date</th>
<th style="font-size: 12px;">Bill Amount</th>
<th style="font-size: 12px;">Mode of Payment</th>
</tr>
</thead>
<tbody ng-repeat="p in feeInfo">
<tr>
<td>{{p.BillNO}}</td>
<td>{{p.ReceiptNo}}</td>
<td>{{p.BillDate}}</td>
<td>{{p.BillAmount}}</td>
<td>{{p.ModeOfPayment}}</td>
</tr>
</tbody>
</table>
</div>
</div>
<div class="row">
<div class="col-md-3 form-group" ng-class="{'has-error':p.Reason.$dirty && p.Reason.$invalid, 'has-success':p.Reason.$valid}">
<label>
Reason to Deactivate <span class="symbol required"></span>
</label>
<textarea type="text" placeholder="Enter Reason" tabindex="7" class="form-control" name="Messagebody" ng-model="p.Reason" required></textarea>
</div>
<div class="col-md-3" ng-if="p.Deactive !=0">
<label>
Active/De-Active
</label>
<div ng-if="p.IsActive==true">
<switch ng-model="p.IsActive" ng-init="p.IsActive = true" class="green"></switch>
</div>
<div ng-if="p.IsActive==false">
<switch ng-model="p.IsActive" ng-init="p.IsActive = false" class="green"></switch>
</div>
</div>
</div>
</div>
<div class="row">
<div class="col-md-12">
<div class="pull-right">
<button type="submit" ladda="ldloading.zoom_in" tabindex="6" class="btn btn-wide btn-success" data-style="zoom-in" ng-click="updatestatus(p,Form,'zoom-in')">
Save
</button>
<input type="button" class="btn btn-warning btn-wide" tabindex="10" value="Cancel" ng-click="close()"></input>
</div>
<!--
<div class="pull-right" ng-if="p.IsActive==false">
<input type="button" class="btn btn-warning btn-wide" tabindex="10" value="Cancel" ng-click="close()"></input>
</div> -->
</div>
</div>
</fieldset>
</div>
</div>
</form>
<!-- class="editRowTd" -->