blob: 275f50183d6c3c6c09ecf5fcf639fc0a4e749fbb (
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.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' %]
|