course details changes done
This commit is contained in:
parent
64ec084b04
commit
986da10b30
@ -87,7 +87,7 @@
|
|||||||
</div>
|
</div>
|
||||||
</fieldset>
|
</fieldset>
|
||||||
|
|
||||||
</form>
|
</form>
|
||||||
<div class="row">
|
<div class="row">
|
||||||
|
|
||||||
<div class="col-md-3">
|
<div class="col-md-3">
|
||||||
@ -107,30 +107,30 @@
|
|||||||
|
|
||||||
<table class="table table-hover" ng-init="init();">
|
<table class="table table-hover" ng-init="init();">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th ng-click="sort('CertificationID')">Certification ID
|
<th ng-click="sort('CertificationID')">Certification ID
|
||||||
<span class="glyphicon sort-icon" ng-show="sortKey=='CertificationID'" ng-class="{'glyphicon-chevron-up':reverse,'glyphicon-chevron-down':!reverse}"> </span>
|
<span class="glyphicon sort-icon" ng-show="sortKey=='CertificationID'" ng-class="{'glyphicon-chevron-up':reverse,'glyphicon-chevron-down':!reverse}"> </span>
|
||||||
</th>
|
</th>
|
||||||
<th ng-click="sort('CertificateName')">Certificate Nmae
|
<th ng-click="sort('CertificateName')">Certificate Nmae
|
||||||
<span class="glyphicon sort-icon" ng-show="sortKey=='CertificateName'" ng-class="{'glyphicon-chevron-up':reverse,'glyphicon-chevron-down':!reverse}"> </span>
|
<span class="glyphicon sort-icon" ng-show="sortKey=='CertificateName'" ng-class="{'glyphicon-chevron-up':reverse,'glyphicon-chevron-down':!reverse}"> </span>
|
||||||
</th>
|
</th>
|
||||||
<th>Status</th>
|
<th>Status</th>
|
||||||
<th></th>
|
<th></th>
|
||||||
</tr>
|
</tr>
|
||||||
</thead>
|
</thead>
|
||||||
<tbody dir-paginate="p in statusInfo|orderBy:sortKey:reverse|filter:search:strict|itemsPerPage:10">
|
<tbody dir-paginate="p in statusInfo|orderBy:sortKey:reverse|filter:search:strict|itemsPerPage:10">
|
||||||
<tr>
|
<tr>
|
||||||
<td>{{p.CertificationID}}</td>
|
<td>{{p.CertificationID}}</td>
|
||||||
<td>{{p.CertificateName}}</td>
|
<td>{{p.CertificateName}}</td>
|
||||||
<td><span ng-if="p.IsActive == 1"> Active </span><span ng-if="p.IsActive == 0">De-Active</span></td>
|
<td><span ng-if="p.IsActive == 1"> Active </span><span ng-if="p.IsActive == 0">De-Active</span></td>
|
||||||
<td>
|
<td>
|
||||||
<a class="text-azure" id="editRowBtn{{p.CertificationID}}" ng-click="setEditId(p.CertificationID);"><b class="fa fa-hover fa-pencil " aria-hidden="true"></b>
|
<a class="text-azure" id="editRowBtn{{p.CertificationID}}" ng-click="setEditId(p.CertificationID);"><b class="fa fa-hover fa-pencil " aria-hidden="true"></b>
|
||||||
</a>
|
</a>
|
||||||
</td>
|
</td>
|
||||||
</tr>
|
</tr>
|
||||||
<tr ng-show="editId === p.CertificationID" ng-if="editId === p.CertificationID">
|
<tr ng-show="editId === p.CertificationID" ng-if="editId === p.CertificationID">
|
||||||
<td colspan="12" ng-include src="'assets/views/certificate/editCertificationDetails.html'"></td>
|
<td colspan="12" ng-include src="'assets/views/certificate/editCertificationDetails.html'"></td>
|
||||||
</tr>
|
</tr>
|
||||||
|
|
||||||
</tbody>
|
</tbody>
|
||||||
|
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user