blob: fb3609bb36c3299ff876aa1475264682b4d9b3c0 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
[% PROCESS 'admin/header.html' title=loc('Summary') -%]
<ul>
<li>[% tprintf( loc('<strong>%s</strong> live problems'), total_problems_live ) %];
[% tprintf( loc('from %s different users'), total_problems_users ) %]</li>
<li>[% tprintf( loc('%s council contacts – %s confirmed, %s unconfirmed'), contacts.total, contacts.confirmed, contacts.unconfirmed) %]</li>
</ul>
<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' %]
|