course details changes done
This commit is contained in:
parent
ace7669bd1
commit
381cf2886f
@ -15,6 +15,7 @@
|
||||
|
||||
|
||||
}
|
||||
|
||||
</style>
|
||||
<!-- start: PAGE TITLE -->
|
||||
<section id="page-title">
|
||||
@ -102,9 +103,10 @@
|
||||
|
||||
<fieldset>
|
||||
|
||||
|
||||
<table class="table table-hover">
|
||||
<thead>
|
||||
<tr>
|
||||
<tr >
|
||||
<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>
|
||||
@ -126,12 +128,12 @@
|
||||
<th>Assigned To
|
||||
|
||||
</th>
|
||||
<th></th>
|
||||
<th>Status</th>
|
||||
|
||||
</tr>
|
||||
</thead>
|
||||
<tbody dir-paginate="p in data|orderBy:sortKey:reverse|filter:search:strict|filter:search2:strict|itemsPerPage:10">
|
||||
<tr>
|
||||
<tr ng-click="setEditId(p);" title="Click to view tracking details">
|
||||
<td><a href="#" class="text-orange" ng-click="setEditId(p);">{{p.TrackingID}}</a></td>
|
||||
<td>{{p.followupDetails }}</td>
|
||||
<td>{{p.LeadName}}</td>
|
||||
@ -140,13 +142,17 @@
|
||||
<td>{{p.CourseName }}</td>
|
||||
<td>{{p.ListName}}</td>
|
||||
<td>{{p.Firstname}}</td>
|
||||
<td ng-if="p.StatusCode=='S001'"><a href="#" class="text-orange" ng-click="setEditId(p);" title="Open"><b class="fa fa-hover fa-phone " aria-hidden="true"></b>
|
||||
<!--<td ng-if="p.StatusCode=='S001'"><a href="#" class="text-orange" ng-click="setEditId(p);" title="Open"><b class="fa fa-hover fa-phone " aria-hidden="true"></b>
|
||||
</a></td>
|
||||
<td ng-if="p.StatusCode!='S001'"><a href="#" class="text-green" ng-click="setEditId(p);" title="Close"><b class="fa fa-hover fa-phone " style="display: inline-block;
|
||||
border-radius: 60px;
|
||||
box-shadow: 0px 0px 2px green;
|
||||
padding: 0.5em 0.6em;" aria-hidden="true"></b>
|
||||
</a></td>
|
||||
</a></td>-->
|
||||
|
||||
<td class="hidden-xs" ng-if="p.StatusCode=='S001'"><span class="label label-sm label-warning">{{p.statusListName}}</span></td>
|
||||
<td class="hidden-xs" ng-if="p.StatusCode!='S001'"><span class="label label-sm label-success">{{p.statusListName}}</span></td>
|
||||
|
||||
|
||||
</tr>
|
||||
</tbody>
|
||||
@ -305,7 +311,7 @@
|
||||
datepicker-options="dateOptions"
|
||||
placeholder="Select Date"
|
||||
min-date="currentDate"
|
||||
max-date="minStartDate"
|
||||
max-date="futureDate"
|
||||
close-text="Close" required="required"/>
|
||||
<span class="error text-small block"
|
||||
ng-if="Form.date.$dirty && Form.date.$error.required">Date is required.</span>
|
||||
|
||||
Loading…
Reference in New Issue
Block a user