course details changes done
This commit is contained in:
parent
b5ee9ea639
commit
db18b26d86
@ -128,6 +128,7 @@
|
||||
<table class="table table-hover">
|
||||
<thead>
|
||||
<tr >
|
||||
<th></th>
|
||||
<th ng-click="sort('TrackingID')">Tracking ID
|
||||
<span class="glyphicon sort-icon" ng-show="sortKey=='TrackingID'" ng-class="{'glyphicon-chevron-up':reverse,'glyphicon-chevron-down':!reverse}"></span>
|
||||
</th>
|
||||
@ -152,8 +153,14 @@
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody dir-paginate="p in data|unique:'TrackingID' |orderBy:sortKey:reverse|filter:search2:strict| filter:search3:strict| filter:search4:strict| filter:search5:strict|itemsPerPage:10">
|
||||
<tr ng-click="setEditId(p,search,search2,search3.ActivityName,search4.Firstname,search5.statusName);">
|
||||
<td><a class="text-orange" ng-click="setEditId(p,search,search2,search3.ActivityName,search4.Firstname,search5.statusName);">{{p.TrackingID}}</a></td>
|
||||
<tr>
|
||||
<td ng-if="p.Flag==false">
|
||||
<a class="glyphicon ng-scope fa margin-right-5 fa-thumbs-o-up text-grey text-extra-large" tooltip="Important" ng-click="markAsImportant(p.TrackingID,true);"></a>
|
||||
</td>
|
||||
<td ng-if="p.Flag==true">
|
||||
<a class="glyphicon ng-scope fa margin-right-5 fa-thumbs-o-up text-purple text-extra-large" tooltip="Important" ng-click="markAsImportant(p.TrackingID,false);"></a>
|
||||
</td>
|
||||
<td><a tooltip="Click To View" class="text-orange" ng-click="setEditId(p,search,search2,search3.ActivityName,search4.Firstname,search5.statusName);">{{p.TrackingID}}</a></td>
|
||||
<td>{{p.followupDetails }}</td>
|
||||
<td>{{p.LeadName}}</td>
|
||||
<td>{{p.MobileNumber}}</td>
|
||||
@ -171,13 +178,13 @@
|
||||
|
||||
<td ng-if="p.statusName!='CLOSE'">
|
||||
|
||||
<a class="text-dark" tooltip="Click To View">
|
||||
<a class="text-dark" tooltip="Click To View" ng-click="setEditId(p,search,search2,search3.ActivityName,search4.Firstname,search5.statusName);">
|
||||
<span class="label label-sm label-warning"> {{p.statusName}} </span>
|
||||
</a>
|
||||
|
||||
<!--<span class="label label-sm label-warning">{{p.statusName}}</span>--></td>
|
||||
<td ng-if="p.statusName=='CLOSE'">
|
||||
<a class="text-dark" tooltip="Click To View">
|
||||
<a class="text-dark" tooltip="Click To View" ng-click="setEditId(p,search,search2,search3.ActivityName,search4.Firstname,search5.statusName);">
|
||||
<span class="label label-sm label-success"> {{p.statusName}} </span>
|
||||
</a>
|
||||
<!--<span class="label label-sm label-success">{{p.statusName}}</span>--></td>
|
||||
@ -411,12 +418,6 @@
|
||||
</div>
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
|
||||
<div class="col-md-3" ng-if="loading==true">
|
||||
<spinner name="html5spinner">
|
||||
<div class="overlay"></div>
|
||||
@ -466,6 +467,7 @@
|
||||
<span class="error text-small block"
|
||||
ng-if="Form.altermobilenumber.$error.maxlength || Form.altermobilenumber.$error.minlength || Form.altermobilenumber.$error.pattern">Enter a valid phone number</span>
|
||||
|
||||
|
||||
</div>
|
||||
<div class="col-md-3 form-group"
|
||||
ng-class="{'has-error':Form.refered.$dirty && Form.refered.$invalid, 'has-success':Form.refered.$valid}">
|
||||
|
||||
Loading…
Reference in New Issue
Block a user