Blame view

app/partials/analytics/analytics.html 2.88 KB
feacde5ff   Rishav   setup acuefuel in...
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
  <style>
     .chart-holder {
     height: 325px;
     }
     .cirque-stats {
     text-align: center;
     }
     .cirque-stats .cirque-container {   
     margin-top: 1.5em;
     margin-bottom: 1.5em;   
     margin-right: 2em;
     margin-left: 2em;
     }
     .subnavbar .mainnav > li:nth-child(3) > a{
     color: #ff9900;
     }
ae523d5ef   Mr. Hot Foods   account setting m...
17
18
  
     
feacde5ff   Rishav   setup acuefuel in...
19
20
21
22
23
24
25
26
  </style>
  <div class="main">
     <div class="container">
        <div class="row">
           <div class="col-md-6">
              <div class="widget stacked">
                 <div class="widget-header">
                    <i class="icon-bar-chart"></i>
05bfa28a2   Mr. Hot Foods   remove save butto...
27
                    <h3>Monthly Fuel Sales</h3>
feacde5ff   Rishav   setup acuefuel in...
28
29
30
                 </div>
                 <!-- /widget-header -->
                 <div class="widget-content">
05bfa28a2   Mr. Hot Foods   remove save butto...
31
                    <nvd3 options="optionsmfs" data="datamfs"></nvd3>
feacde5ff   Rishav   setup acuefuel in...
32
33
34
35
36
37
38
                    <!-- /bar-chart -->
                 </div>
                 <!-- /widget-content -->
              </div>
              <!-- /widget -->     
           </div>
           <!-- /.span6 -->
dd378d69f   Mr. Hot Foods   changes in flight...
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
           <div class="col-md-6">
              <div class="widget stacked">
                 <div class="widget-header">
                    <i class="icon-bar-chart"></i>
                    <h3>Historic Fuel Pricing</h3>
                 </div>
                 <!-- /widget-header -->
                 <div class="widget-content">
                    <nvd3 options="optionshfp" data="datahfp"></nvd3>
                    <!-- /pie-chart -->
                 </div>
                 <!-- /widget-content -->
              </div>
              <!-- /widget -->        
           </div>
           <!-- /span6 -->
feacde5ff   Rishav   setup acuefuel in...
55
        </div>
dd378d69f   Mr. Hot Foods   changes in flight...
56
57
  
  
feacde5ff   Rishav   setup acuefuel in...
58
        <div class="row">
05bfa28a2   Mr. Hot Foods   remove save butto...
59
        
feacde5ff   Rishav   setup acuefuel in...
60
61
62
63
64
65
        </div>
        <div class="row">
           <div class="col-md-6">
              <div class="widget stacked">
                 <div class="widget-header">
                    <i class="icon-bar-chart"></i>
05bfa28a2   Mr. Hot Foods   remove save butto...
66
                    <h3>Customer Sources</h3>
feacde5ff   Rishav   setup acuefuel in...
67
68
69
                 </div>
                 <!-- /widget-header -->
                 <div class="widget-content">
dd378d69f   Mr. Hot Foods   changes in flight...
70
                    <nvd3 options="optionscs" data="datacs"></nvd3>
feacde5ff   Rishav   setup acuefuel in...
71
72
73
74
75
76
77
                    <!-- /pie-chart -->
                 </div>
                 <!-- /widget-content -->
              </div>
              <!-- /widget -->        
           </div>
           <!-- /span6 -->
05bfa28a2   Mr. Hot Foods   remove save butto...
78
79
  
            <div class="col-md-6">
feacde5ff   Rishav   setup acuefuel in...
80
81
82
              <div class="widget stacked">
                 <div class="widget-header">
                    <i class="icon-bar-chart"></i>
05bfa28a2   Mr. Hot Foods   remove save butto...
83
                    <h3>Regional PAP Pricing</h3>
feacde5ff   Rishav   setup acuefuel in...
84
85
86
                 </div>
                 <!-- /widget-header -->
                 <div class="widget-content">
f100849ce   Mr. Hot Foods   analytics updates
87
                    <div id="map" style="width: 100%; height: 325px;"></div>
feacde5ff   Rishav   setup acuefuel in...
88
89
90
                 </div>
                 <!-- /widget-content -->
              </div>
05bfa28a2   Mr. Hot Foods   remove save butto...
91
              <!-- /widget -->     
feacde5ff   Rishav   setup acuefuel in...
92
           </div>
05bfa28a2   Mr. Hot Foods   remove save butto...
93
94
           <!-- /.span6 -->
          
feacde5ff   Rishav   setup acuefuel in...
95
        </div>
05bfa28a2   Mr. Hot Foods   remove save butto...
96
        
feacde5ff   Rishav   setup acuefuel in...
97
98
99
100
     </div>
     <!-- /container -->
  </div>
  <!-- /main -->
dd378d69f   Mr. Hot Foods   changes in flight...
101