student fees status last name changes
This commit is contained in:
parent
363cba0d41
commit
2b7ec182c5
@ -103,10 +103,21 @@
|
|||||||
<table class="table table-hover" ng-controller="studentModalDemoCtrl">
|
<table class="table table-hover" ng-controller="studentModalDemoCtrl">
|
||||||
<thead>
|
<thead>
|
||||||
<tr>
|
<tr>
|
||||||
<th>Student Name</th>
|
<th ng-click="sort('Firstname')">First Name
|
||||||
<th>Mobile Number</th>
|
<span class="glyphicon sort-icon" ng-show="sortKey=='Firstname'" ng-class="{'glyphicon-chevron-up':reverse,'glyphicon-chevron-down':!reverse}"></span>
|
||||||
<th>University</th>
|
</th>
|
||||||
<th>Course</th>
|
<th ng-click="sort('Lastname')">Last Name
|
||||||
|
<span class="glyphicon sort-icon" ng-show="sortKey=='Lastname'" ng-class="{'glyphicon-chevron-up':reverse,'glyphicon-chevron-down':!reverse}"></span>
|
||||||
|
</th>
|
||||||
|
<th ng-click="sort('MobileNumber')">Mobile Number
|
||||||
|
<span class="glyphicon sort-icon" ng-show="sortKey=='MobileNumber'" ng-class="{'glyphicon-chevron-up':reverse,'glyphicon-chevron-down':!reverse}"></span>
|
||||||
|
</th>
|
||||||
|
<th ng-click="sort('UniversityName')">University
|
||||||
|
<span class="glyphicon sort-icon" ng-show="sortKey=='UniversityName'" ng-class="{'glyphicon-chevron-up':reverse,'glyphicon-chevron-down':!reverse}"></span>
|
||||||
|
</th>
|
||||||
|
<th ng-click="sort('CourseName')">Course
|
||||||
|
<span class="glyphicon sort-icon" ng-show="sortKey=='CourseName'" ng-class="{'glyphicon-chevron-up':reverse,'glyphicon-chevron-down':!reverse}"></span>
|
||||||
|
</th>
|
||||||
<!-- <th>Session</th>-->
|
<!-- <th>Session</th>-->
|
||||||
<th>Action</th>
|
<th>Action</th>
|
||||||
<th></th>
|
<th></th>
|
||||||
@ -116,6 +127,7 @@
|
|||||||
<tbody dir-paginate="user in studentInfo|orderBy:sortKey:reverse|filter:search:strict|itemsPerPage:10">
|
<tbody dir-paginate="user in studentInfo|orderBy:sortKey:reverse|filter:search:strict|itemsPerPage:10">
|
||||||
<tr>
|
<tr>
|
||||||
<td><a tooltip="View Student" class="text-dark" ng-click="open(user);">{{user.Firstname}}</a></td>
|
<td><a tooltip="View Student" class="text-dark" ng-click="open(user);">{{user.Firstname}}</a></td>
|
||||||
|
<td>{{user.Lastname}}</td>
|
||||||
<td><a tooltip="View Student" class="text-dark" ng-click="open(user);">{{user.MobileNumber}}</a></td>
|
<td><a tooltip="View Student" class="text-dark" ng-click="open(user);">{{user.MobileNumber}}</a></td>
|
||||||
<td>{{user.UniversityName}}</td>
|
<td>{{user.UniversityName}}</td>
|
||||||
<td>{{user.CourseName}}</td>
|
<td>{{user.CourseName}}</td>
|
||||||
|
|||||||
Loading…
Reference in New Issue
Block a user