course details changes done

This commit is contained in:
gandhimathi 2018-01-31 11:25:30 +05:30
parent 309520f11d
commit 8cea382f20

View File

@ -187,7 +187,7 @@
</div> </div>
</div> </div>
<div class="table-responsive"> <div class="table-responsive">
<table class="table table-hover"> <table class="table table-hover" ng-controller="studentModalDemoCtrl">
<thead> <thead>
<tr> <tr>
<th ng-click="sort('MobileNumber')">MobileNumber <th ng-click="sort('MobileNumber')">MobileNumber
@ -212,13 +212,13 @@
<tbody dir-paginate="p in data|orderBy:sortKey:reverse|filter:search:strict|itemsPerPage:10| filter:query as results"> <tbody dir-paginate="p in data|orderBy:sortKey:reverse|filter:search:strict|itemsPerPage:10| filter:query as results">
<tr> <tr>
<td> <td>
<a tooltip="View Student Status" ng-click="viewStudentPage(p.StudentID);" class="text-dark"> <a tooltip="View Student" ng-click="open(p);" class="text-dark">
{{p.MobileNumber}} {{p.MobileNumber}}
</a> </a>
</td> </td>
<td> <td>
<a tooltip="View Student Status" ng-click="viewStudentPage(p.StudentID);" class="text-dark"> <a tooltip="View Student" ng-click="open(p);" class="text-dark">
{{p.Firstname}} {{p.Lastname}} {{p.Firstname}} {{p.Lastname}}
</a> </a>
@ -239,9 +239,7 @@
<tr ng-show="editCourseId === p.StudentID" ng-if="editCourseId === p.StudentID"> <tr ng-show="editCourseId === p.StudentID" ng-if="editCourseId === p.StudentID">
<td colspan="6" ng-include src="'assets/views/student/editStudentCourseDetails.html'"></td> <td colspan="6" ng-include src="'assets/views/student/editStudentCourseDetails.html'"></td>
</tr> </tr>
<tr ng-show="studentViewPage === p.StudentID" ng-if="studentViewPage === p.StudentID">
<td colspan="6" ng-include src="'assets/views/student/studentViewInManagement.html'"></td>
</tr>
</tbody> </tbody>
</table> </table>
<dir-pagination-controls max-size="10" direction-links="true" boundary-links="true"> <dir-pagination-controls max-size="10" direction-links="true" boundary-links="true">