blob: a51c7f6fec4aee2cb535d0cfdb0a1f0b83f8c1ee (
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>%d</strong> live problems'), total_problems_live ) %];
[% tprintf( loc('from %d different users'), total_problems_users ) %]</li>
<li>[% tprintf( loc('%d council contacts – %d confirmed, %d unconfirmed'), contacts.total, contacts.1, contacts.0) %]</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' %]
|