apollodec/Apollo/assets/views/student/editTrackingDetails.html
2018-10-16 17:43:58 +05:30

71 lines
3.5 KiB
HTML

<div class="row">
<div class="col-md-12">
<div ng-if="trackingEditLoading == true" class="text-center">
<!-- <img src="assets/images/ajax_loader_blue.gif" style="width: 5%; height: 30%"> -->
<h3>Fetching ...</h3>
</div>
<div ng-if="trackingdetails == false" class="text-center">
<h3>No Records Found</h3>
</div>
<div class="col-md-12">
<fieldset ng-if="trackingEditLoading == false && trackingdetails == true" >
<legend>
Tracking Details
</legend>
<!--list of course details : start-->
<div >
<table class="table table-hover" >
<thead>
<tr>
<th ng-click="sort('TrackingID')"> ID
<span class="glyphicon sort-icon" ng-show="sortKey=='TrackingID'" ng-class="{'glyphicon-chevron-up':reverse,'glyphicon-chevron-down':!reverse}"></span>
</th>
<th>Followup</th>
<th> Name </th>
<th>Mobile </th>
<th>University</th>
<th>Course</th>
<th>Activity </th>
<th>Assigned </th>
<th>Comments</th>
<th>Status</th>
</tr>
</thead>
<tbody >
<tr ng-repeat="s in trackingDetails">
<td><a tooltip="Click To View" class="text-orange" ng-click="TrackingDetails(s);">{{s.TrackingID}}</a></td>
<td>{{s.FollowupOn}}</td>
<td>{{s.LeadName}}</td>
<td>{{s.MobileNumber}}</td>
<td>{{s.University}}</td>
<td>{{s.Course}}</td>
<td>{{s.ActivityName}}</td>
<td>{{s.Firstname}}</td>
<td>{{s.FollowupComments}}</td>
<td>{{s.statusListName}}</td>
<!--ng-hide="s.Fee_paid_exist == 1 && localUserType == 'R002'"-->
</tr>
</tbody>
</table>
<div class="row">
<div class="col-md-12">
<div class="pull-right">
<!-- <button type="reset" id="addCourseBtn" class="btn btn-into btn-wide" tabindex="100" ng-click="addStudentCourse()"> -->
<!-- Add Course -->
<!-- </button> -->
<button type="reset" class="btn btn-warning btn-wide" tabindex="101" ng-click="cancel()">
Cancel
</button>
</div>
</div>
</div>
</div>
</fieldset>
</div>
<!-- class="editRowTd" -->