student view
This commit is contained in:
parent
d905b229f5
commit
09daebfe9c
@ -7,6 +7,10 @@
|
|||||||
|
|
||||||
|
|
||||||
}
|
}
|
||||||
|
.switch.checked {
|
||||||
|
background: #1FBBA6;
|
||||||
|
border-color: #1FBBA6;
|
||||||
|
}
|
||||||
</style>
|
</style>
|
||||||
<!-- start: PAGE TITLE -->
|
<!-- start: PAGE TITLE -->
|
||||||
<section id="page-title">
|
<section id="page-title">
|
||||||
@ -72,6 +76,7 @@
|
|||||||
<span class="glyphicon sort-icon" ng-show="sortKey=='UniversityName'" ng-class="{'glyphicon-chevron-up':reverse,'glyphicon-chevron-down':!reverse}"></span>
|
<span class="glyphicon sort-icon" ng-show="sortKey=='UniversityName'" ng-class="{'glyphicon-chevron-up':reverse,'glyphicon-chevron-down':!reverse}"></span>
|
||||||
</th>
|
</th>
|
||||||
<th>Status</th>
|
<th>Status</th>
|
||||||
|
<th>Is Default</th>
|
||||||
<th> Action</th>
|
<th> Action</th>
|
||||||
|
|
||||||
</tr>
|
</tr>
|
||||||
@ -83,7 +88,18 @@
|
|||||||
<td>{{p.BatchName}}</td>
|
<td>{{p.BatchName}}</td>
|
||||||
<td>{{p.UniversityName}}</td>
|
<td>{{p.UniversityName}}</td>
|
||||||
<td><span ng-if="p.IsActive == 1"> Active </span><span ng-if="p.IsActive == 0">In-Active</span></td>
|
<td><span ng-if="p.IsActive == 1"> Active </span><span ng-if="p.IsActive == 0">In-Active</span></td>
|
||||||
<td>
|
<td ng-if="p.IsDefault==true" id="{{p.BatchCode}}">
|
||||||
|
|
||||||
|
|
||||||
|
<switch id="{{p.BatchCode}}" ng-model="p.IsDefault" ng-init="p.IsDefault = true" ng-click="changeBtachDefault(p);"></switch>
|
||||||
|
</td>
|
||||||
|
<td ng-if="p.IsDefault==false">
|
||||||
|
<switch id="{{p.BatchCode}}" ng-model="p.IsDefault" ng-init="p.IsDefault = false" ng-click="changeBtachDefault(p);">
|
||||||
|
</switch>
|
||||||
|
|
||||||
|
|
||||||
|
</td>
|
||||||
|
<td>
|
||||||
|
|
||||||
<a class="text-azure" id="editRowBtn{{p.BatchCode}}" ng-click="setEditId(p.BatchCode,p);"><b class="fa fa-hover fa-pencil " aria-hidden="true"></b>
|
<a class="text-azure" id="editRowBtn{{p.BatchCode}}" ng-click="setEditId(p.BatchCode,p);"><b class="fa fa-hover fa-pencil " aria-hidden="true"></b>
|
||||||
</a>
|
</a>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user