37 lines
838 B
HTML
37 lines
838 B
HTML
<div class="panel panel-default">
|
|
<div class="panel-heading">
|
|
<h3 class="panel-title">
|
|
<i class="fa fa-pie-chart fa-fw"></i> Lost Customers
|
|
</h3>
|
|
</div>
|
|
<table ng-hide="vm.isLoading || vm.customer.length == 0"
|
|
class="table table-striped table-bordered">
|
|
<thead>
|
|
<tr>
|
|
<th>Name</th>
|
|
<th>Work E-mail</th>
|
|
<th>Date Lost</th>
|
|
</tr>
|
|
</thead>
|
|
<tbody>
|
|
<tr ng-repeat="customer in vm.customers">
|
|
<td>
|
|
{{customer.Name}}
|
|
</td>
|
|
<td>
|
|
{{customer.WorkEmail}}
|
|
</td>
|
|
<td>
|
|
{{customer.TerminationDate | parseDate | date: 'shortDate'}}
|
|
</td>
|
|
</tr>
|
|
</tbody>
|
|
</table>
|
|
<div class="panel-body" ng-show="vm.isLoading">
|
|
Loading...
|
|
</div>
|
|
<div class="panel-body" ng-show="!vm.isLoading && vm.customers.length == 0">
|
|
There are no customers on the report.
|
|
</div>
|
|
</div>
|