aboutsummaryrefslogtreecommitdiffstats
path: root/templates/web/zurich/admin/index.html
blob: ab835b5a3044c9ea9607f4bd673abbf46df64271 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
[% PROCESS 'admin/header.html' title=loc('Summary') -%]

<ul>
    <li>[% tprintf( loc('<strong>%d</strong> live problems'), total_problems_live ) %];
    [% tprintf( loc('from %d different users'), total_problems_users ) %]</li>
    <li>[% tprintf( loc('%d council contacts &ndash; %d confirmed, %d unconfirmed'), contacts.total, contacts.1, contacts.0) %]</li>
</ul>

[% IF c.cobrand.admin_show_creation_graph -%]
    <p>
        <a href="[% c.config.BASE_URL %]/fms-live-creation.png">[% loc('Graph of problem creation by status over time') %]</a>
    </p>
[% END -%]

<h2>[% loc('Problem breakdown by state') %]</h2>
<ul>
  [% FOREACH state IN problems.keys.sort %]
    [% NEXT IF NOT states.$state %]
    <li>[% problems.$state %] [% states.$state %]</li>
  [% END %]
</ul>

[% INCLUDE 'admin/footer.html' %]