blob: 452af001ef003dc1b46b6b1438a29c0cd3e2aa58 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
|
[% INCLUDE 'admin/header.html' title=loc('Stats') %]
<ul>
<li><a href="[% c.uri_for_action('admin/stats/questionnaire') %]">[% loc('Survey Results') %]</a></li>
<li><a href="[% c.uri_for_action('admin/stats/state') %]">[% loc('Problem breakdown by state') %]</a></li>
<li><a href="[% c.uri_for_action('admin/stats/fix_rate') %]">[% loc('Category fix rate for problems > 4 weeks old') %]</a></li>
<li><a href="[% c.uri_for_action('dashboard/index') %]">[% loc('Summary statistics') %]</a></li>
[% IF c.cobrand.feature('heatmap').keys %]
<li>[% loc('Heatmap') %] <ul>
[% FOR body IN c.cobrand.feature('heatmap').pairs %]
<li><a href="[% c.uri_for_action('dashboard/heatmap') %]?body=[% body.value %]">[% body.key %]</a></li>
[% END %]
</ul> </li>
[% ELSIF c.cobrand.feature('heatmap') %]
<li><a href="[% c.uri_for_action('dashboard/heatmap') %]">[% loc('Heatmap') %]</a></li>
[% END %]
[% IF c.cobrand.moniker == 'fixmystreet' %]
<li><a href="[% c.uri_for_action('admin/stats/refused') %]">Refused</a></li>
[% END %]
</ul>
[% INCLUDE 'admin/footer.html' %]
|