apollodec/Apollo/assets/views/student/editTrackingDetails.html
2018-10-10 19:47:17 +05:30

67 lines
2.9 KiB
HTML

<div class="row">
<div class="col-md-12">
<div ng-if="trackingDetails == false" class="text-center">
<h3>No Records Found</h3>
</div>
<div class="col-md-12">
<fieldset >
<legend>
Tracking Details
</legend>
<!--list of course details : start-->
<div>
<table class="table">
<thead>
<tr>
<th> ID </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>{{s.TrackingID}}
<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>
</div>
</div>
<!-- class="editRowTd" -->