course details changes done

This commit is contained in:
gandhimathi 2017-12-18 11:35:55 +05:30
parent 2182e5cedf
commit 0899254d64

View File

@ -70,6 +70,86 @@
</div>
</form>
<div class="table-responsive">
<table class="table table-hover">
<thead>
<tr>
<th>Student Name</th>
<th>Mobile Number</th>
<th>University</th>
<th>Course</th>
<th>Batch</th>
<th>Action</th>
</tr>
</thead>
<tbody dir-paginate="user in studentInfo|orderBy:sortKey:reverse|filter:search:strict|itemsPerPage:10">
<tr>
<td>{{user.Firstname}}</td>
<td>{{user.MobileNumber}}</td>
<td>{{user.UniversityName}}</td>
<td>{{user.CourseName}}</td>
<td>{{user.BatchName}}</td>
<td>
<input type="button" class="btn btn-info btn-xs btn-transparent tooltips" tooltip-placement="bottom" tooltip="Click Update Fees" id="editRow{{user.ID}}" value="Update Fees" ng-click="updateFees(user)">
</td>
</tr>
<tr ng-show="editId === user.ID" ng-if="editId === user.ID">
<td colspan="12" ng-include
src="'assets/views/status-update/updateFeesStatus.html'"></td>
</tr>
</tbody>
</table>
<dir-pagination-controls max-size="10" direction-links="true" boundary-links="true">
</dir-pagination-controls>
</div>
<!--<div class="row">
<fieldset>
<div class="table-responsive">
<table ng-table="tableParams" class="table table-hover">
<tbody ng-repeat="user in studentInfo">
<tr>
<td data-title="'Student Name'"> {{user.Firstname}} </td>
<td data-title="'Mobile Number'"> {{user.MobileNumber}} </td>
<td data-title="'University'">{{user.UniversityName}}</td>
<td data-title="'Course'">{{user.CourseName}}</td>
<td data-title="'Batch'">{{user.BatchName}}</td>
<td data-title="'Action'">
<input type="button" class="btn btn-info btn-xs btn-transparent tooltips" tooltip-placement="bottom" tooltip="Click Update Fees" id="editRow{{user.ID}}" value="Update Fees" ng-click="updateFees(user)">
</td>
</tr>
<tr ng-show="editId === user.ID" ng-if="editId === user.ID">
<td colspan="12" ng-include
src="'assets/views/status-update/updateFeesStatus.html'"></td>
</tr>
</tbody>
</table>
</div>
</fieldset>
</div>-->
</div>
<!-- end: LIST GROUP -->