apollodec/Apollo/assets/views/dashboard_tile1.html
2018-10-30 18:59:01 +05:30

171 lines
6.5 KiB
HTML

<style>
a {
color: #5b5b60;
}
</style>
<!-- start: DASHBOARD TITLE -->
<!--<section id="page-title" class="padding-top-15 padding-bottom-15">
<div class="row">
<div class="col-sm-7">
<h1 class="mainTitle" translate="dashboard.WELCOME" translate-values="{ appName: app.name }">{{ mainTitle }}</h1>
<span class="mainDescription"></span>
</div>
</div>
</section> -->
<!-- end: DASHBOARD TITLE -->
<!-- start: FEATURED BOX LINKS -->
<div ng-controller="dashboardCtrl">
<div class="container-fluid container-fullw padding-bottom-10">
<div class="row" data-ng-init="initDashboardDetails()">
<div class="col-sm-12" ng-controller="studentModalDemoCtrl">
<div class="panel panel-white no-radius">
<div class="panel-body" style="padding:0px!important">
<div class="row">
<tabset class="tabbable no-padding no-margin">
<!-- start today followup details tab-->
<tab heading="Leads Created Today" class="padding-top-5 padding-left-5">
<div ng-if="getLoginType=='R004' || getLoginType=='R003'" class="panel-scroll height-500" perfect-scrollbar wheel-propagation="false" suppress-scroll-x="true">
<div ng-if="lt==true">
<center>
<h5 class="text-dark">No Leads!</h5>
</center>
</div>
<div dx-data-grid="todayLead" ng-if="lt==false"></div>
<!-- <table class="table table-hover no-margin" ng-if="lt==false">
<thead>
<tr>
<tr>
<th>ID</th>
<th>Name</th>
<th>Mobile No</th>
<th>Course</th>
<th>University</th>
<th>Activity</th>
<th>Assigned To</th>
<th>Follow Up Date</th>
<th>Status</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="today in l_dataToday">
<td>{{today.tid}}</td>
<td>
<a tooltip="View Student" class="text-dark" ng-click="open(today);">{{today.name}}</a>
</td>
<td>
<a tooltip="View Student" class="text-dark" ng-click="open(today);">{{today.mobile}}</a>
</td>
<td>{{today.course}}</td>
<td>{{today.univ}}</td>
<td>{{today.activity}}</td>
<td>{{today.AssignTo}}</td>
<td>{{today.fup}}</td>
<td>{{today.prsStatus}}</td>
</tr>
</tbody>
</table> -->
</div>
<div ng-if="getLoginType=='R002' || getLoginType=='R005'" class="panel-scroll height-500" perfect-scrollbar wheel-propagation="false" suppress-scroll-x="true">
<div ng-if="ltl==true">
<center>
<h5 class="text-dark">No Leads!</h5>
</center>
</div>
<!-- <div class="cl-effect-13" style="float: right" ng-if="ltl==false">
<a ui-sref="app.call.tracking">
view more
</a>
</div><br> -->
<div dx-data-grid="todayLead" ng-if="ltl==false"></div>
</div>
</tab>
<!-- end today followup details tab-->
<!-- end pending track details tab-->
<tab heading="Leads Created This Month" class="padding-top-5 padding-left-5">
<div ng-if="getLoginType=='R004' || getLoginType=='R003'" class="panel-scroll height-500" perfect-scrollbar wheel-propagation="false" suppress-scroll-x="true">
<div ng-if="lm==true">
<center>
<h5 class="text-dark">No Leads!</h5>
</center>
</div>
<!-- <div class="cl-effect-13" style="float: right" ng-if="lm==false">
<a ui-sref="app.call.tracking">
view more
</a>
</div> -->
<div dx-data-grid="monthLead" ng-if="lm==false"></div>
<!-- <table class="table table-hover no-margin" ng-if="lm==false">
<thead>
<tr>
<tr>
<th>ID</th>
<th>Name</th>
<th>Mobile No</th>
<th>Course</th>
<th>University</th>
<th>Activity</th>
<th>Assigned To</th>
<th>Follow Up Date</th>
<th>Status</th>
</tr>
</thead>
<tbody>
<tr ng-repeat="today in l_dataMonth">
<td>{{today.tid}}</td>
<td>
<a tooltip="View Student" class="text-dark" ng-click="open(today);">{{today.name}}</a>
</td>
<td>
<a tooltip="View Student" class="text-dark" ng-click="open(today);">{{today.mobile}}</a>
</td>
<td>{{today.course}}</td>
<td>{{today.univ}}</td>
<td>{{today.activity}}</td>
<td>{{today.AssignTo}}</td>
<td>{{today.fup}}</td>
<td>{{today.prsStatus}}</td>
</tr>
</tbody>
</table> -->
</div>
<div ng-if="getLoginType=='R002' || getLoginType=='R005'" class="panel-scroll height-500" perfect-scrollbar wheel-propagation="false" suppress-scroll-x="true">
<div ng-if="lml==true">
<center>
<h5 class="text-dark">No Leads!</h5>
</center>
</div>
<!-- <div class="cl-effect-13" style="float: right" ng-if="emptyDataToday==false">
<a ui-sref="app.call.tracking">
view more
</a>
</div> -->
<div dx-data-grid="monthLead" ng-if="lml==false"></div>
</div>
</tab>
<!-- end pending track details tab-->
</tabset>
</div>
</div>
</div>
</div>
</div>
</div>
</div>