apollodec/Apollo/assets/views/StaffLeadDetails.html
2021-02-06 23:44:45 +05:30

69 lines
2.0 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>
<legend>
Lead Details
</legend>
<!--list of course details : start-->
<div>
<table class="table table-hover">
<thead>
<tr>
<th>SlNo</th>
<th>Staff Name</th>
<th>University</th>
<th>Course</th>
<th>Followup Date</th>
<th>Student Name</th>
<th>Mobile Number</th>
<th>Follow up Comments</th>
<th>Status</th>
</tr>
</thead>
<tbody>
<tr dir-paginate="p in SatffCallDetails|filter:search:strict|itemsPerPage:100">
<td>{{p.SL_NO}}</td>
<td>{{p.Firstname}}{{p.Lastname}}</td>
<td>{{p.University}}</td>
<td>{{p.Course}}</td>
<td>{{p.FollowupOn}}</td>
<td>{{p.LeadName}}</td>
<td>{{p.MobileNumber}}</td>
<td>{{p.FollowupComments}}</td>
<td>{{p.ListName}}</td>
</tr>
</tbody>
</table>
<div class="row">
<div class="col-md-12">
<div class="pull-right">
</div>
</div>
</div>
</div>
</fieldset>
<div style="float: right;">
<button type="reset" class="btn btn-warning btn-wide" tabindex="101" ng-click="closeDetails()">
Cancel
</button>
</div>
</div>
<!-- class="editRowTd" -->