student view

This commit is contained in:
gandhimathi 2018-03-23 15:22:08 +05:30
parent d905b229f5
commit 09daebfe9c

View File

@ -7,6 +7,10 @@
}
.switch.checked {
background: #1FBBA6;
border-color: #1FBBA6;
}
</style>
<!-- start: 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>
</th>
<th>Status</th>
<th>Is Default</th>
<th> Action</th>
</tr>
@ -83,7 +88,18 @@
<td>{{p.BatchName}}</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>
<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>