[329] Rebase hashchange tab code on core plugin developed for ticket 329.
[ckanext-ga-report.git] / ckanext / ga_report / templates / ga_report / site / index.html
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
<html xmlns:py="http://genshi.edgewall.org/"
  xmlns:i18n="http://genshi.edgewall.org/i18n"
  xmlns:xi="http://www.w3.org/2001/XInclude"
  py:strip="">
 
  <xi:include href="../ga_util.html" />
 
  <py:def function="page_title">Site usage</py:def>
 
  <py:def function="optional_head">
    <link rel="stylesheet" type="text/css" href="/scripts/vendor/rickshaw.min.css"/>
    <link rel="stylesheet" type="text/css" href="/css/ga_report.css?1"/>
    <script type="text/javascript" src="/scripts/ckanext_ga_reports.js?1"></script>
    <script type="text/javascript" src="/scripts/vendor/jquery.sparkline.modified.js"></script>
    <script type="text/javascript" src="/scripts/rickshaw_ie7_shim.js"></script>
    <script type="text/javascript" src="/scripts/vendor/d3.v2.js"></script>
    <script type="text/javascript" src="/scripts/vendor/d3.layout.min.js"></script>
    <script type="text/javascript" src="/scripts/vendor/rickshaw.min.js"></script>
  </py:def>
 
  <py:match path="primarysidebar">
    <li class="widget-container boxed widget_text">
      <h4>Download</h4>
      <p><center>
          <a class="btn button btn-primary" href="${h.url_for(controller='ckanext.ga_report.controller:GaReport',action='csv',month=c.month or 'all')}">Download as CSV</a></center>
      </p>
    </li>
    <li class="widget-container boxed widget_text">
      <h4>Graph Legend</h4>
      <div id="graph-legend-container">
        <div id="legend_none">(No graph loaded)</div>
      </div>
    </li>
    <xi:include href="../notes.html" />
 
  </py:match>
 
  <div py:match="content">
      <h1>Site Usage</h1>
      ${usage_nav('Site-wide')}
 
    <div class="tabbable">
      <ul class="nav nav-tabs">
        <li class="active"><a href="#totals" data-toggle="hashtab">Totals</a></li>
        <li class="dropdown">
            <a href="#" class="dropdown-toggle" data-toggle="dropdown">Browsers
                <b class="caret"></b></a>
            <ul class="dropdown-menu">
                <li><a href="#browsers_names" data-toggle="hashtab">Browsers</a></li>
                <li><a href="#browsers_versions" data-toggle="hashtab">Versions</a></li>
            </ul>
        </li>
        <li class="dropdown">
            <a href="#" class="dropdown-toggle" data-toggle="dropdown">Operating Systems
                <b class="caret"></b></a>
            <ul class="dropdown-menu">
                <li><a href="#os" data-toggle="hashtab">Operating Systems</a></li>
                <li><a href="#os_versions" data-toggle="hashtab">Versions</a></li>
            </ul>
        </li>
        <li class="dropdown">
            <a href="#" class="dropdown-toggle" data-toggle="dropdown">Social
                <b class="caret"></b></a>
            <ul class="dropdown-menu">
                <li><a href="#social_networks" data-toggle="hashtab">All networks</a></li>
                <li><a href="#social_referrals_totals" data-toggle="hashtab">Referral links</a></li>
            </ul>
        </li>
        <li><a href="#languages" data-toggle="hashtab">Languages</a></li>
        <li><a href="#country" data-toggle="hashtab">Country</a></li>
      </ul>
      <div class="tab-content">
        <div class="tab-pane active" id="totals">
             <form class="form-inline" action="${h.url_for(controller='ckanext.ga_report.controller:GaReport',action='index')}" method="get">
               <label>Show stats table for:</label>
               ${month_selector(c.month, c.months, c.day)}
             </form>
             <table class="ga-reports-table table table-condensed table-bordered table-striped">
                 <tr>
                   <th>Name</th>
                   <th class="td-numeric">Value</th>
                   <th>History</th>
                 </tr>
                <py:for each="name, value, graph in c.global_totals">
                    <tr>
                        <td>${name}</td>
                        <td class="td-numeric">${value}</td>
                        <td class="sparkline-cell">
                          <span class="sparkline" sparkTooltips="${','.join([x for x,y in graph])}">
                            ${','.join([y for x,y in graph])}
                          </span>
                        </td>
                    </tr>
                </py:for>
               </table>
        </div>
         <div class="tab-pane" id="browsers_versions">
             ${rickshaw_graph(c.browser_versions_graph,'browser-versions',mode='stack')}
             <p>Note: Where a browser has a large number of versions, these have been grouped together.</p>
             <form class="form-inline" action="${h.url_for(controller='ckanext.ga_report.controller:GaReport',action='index')}" method="get">
               <label>Show stats table for:</label>
               ${month_selector(c.month, c.months, c.day)}
             </form>
             ${stat_table(c.browser_versions)}
         </div>
         <div class="tab-pane" id="browsers_names">
             ${rickshaw_graph(c.browsers_graph,'browsers',mode='stack')}
             <form class="form-inline" action="${h.url_for(controller='ckanext.ga_report.controller:GaReport',action='index')}" method="get">
               <label>Show stats table for:</label>
               ${month_selector(c.month, c.months, c.day)}
             </form>
             ${stat_table(c.browsers)}
         </div>
         <div class="tab-pane" id="os">
             ${rickshaw_graph(c.os_graph,'os',mode='stack')}
             <form class="form-inline" action="${h.url_for(controller='ckanext.ga_report.controller:GaReport',action='index')}" method="get">
               <label>Show stats table for:</label>
               ${month_selector(c.month, c.months, c.day)}
             </form>
             ${stat_table(c.os)}
         </div>
         <div class="tab-pane" id="os_versions">
             ${rickshaw_graph(c.os_versions_graph,'os_versions',mode='stack')}
             <form class="form-inline" action="${h.url_for(controller='ckanext.ga_report.controller:GaReport',action='index')}" method="get">
               <label>Show stats table for:</label>
               ${month_selector(c.month, c.months, c.day)}
             </form>
             ${stat_table(c.os_versions)}
         </div>
        <div class="tab-pane" id="social_referrals_totals">
            <p>Number of visits that were referred from social networks</p>
             <form class="form-inline" action="${h.url_for(controller='ckanext.ga_report.controller:GaReport',action='index')}" method="get">
               <label>Show stats table for:</label>
               ${month_selector(c.month, c.months, c.day)}
             </form>
            ${social_table(c.social_referrer_totals)}
        </div>
        <div class="tab-pane" id="social_networks">
             ${rickshaw_graph(c.social_networks_graph, 'social_networks',mode='stack')}
            <p>Percentage of visits that were referred from these social networks</p>
             <form class="form-inline" action="${h.url_for(controller='ckanext.ga_report.controller:GaReport',action='index')}" method="get">
               <label>Show stats table for:</label>
               ${month_selector(c.month, c.months, c.day)}
             </form>
             ${stat_table(c.social_networks, 'Visits')}
        </div>
        <div class="tab-pane" id="languages">
             ${rickshaw_graph(c.languages_graph,'languages',mode='stack')}
             <form class="form-inline" action="${h.url_for(controller='ckanext.ga_report.controller:GaReport',action='index')}" method="get">
               <label>Show stats table for:</label>
               ${month_selector(c.month, c.months, c.day)}
             </form>
             ${stat_table(c.languages)}
        </div>
        <div class="tab-pane" id="country">
             ${rickshaw_graph(c.country_graph,'country',mode='stack')}
             <form class="form-inline" action="${h.url_for(controller='ckanext.ga_report.controller:GaReport',action='index')}" method="get">
               <label>Show stats table for:</label>
               ${month_selector(c.month, c.months, c.day)}
             </form>
             ${stat_table(c.country)}
        </div>
       </div>
     </div>
  </div>
 
 
  <py:def function="optional_footer">
    <script type="text/javascript">
      $(function() {
        CKAN.GA_Reports.bind_sparklines();
        CKAN.GA_Reports.bind_sidebar();
        CKAN.GA_Reports.bind_month_selector();
      });  
    </script>
  </py:def>
 
  <xi:include href="../../layout.html" />
</html>