blob: f14fd079ef1372a83fb512650378b84c5447b27d (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
|
[% INCLUDE 'header.html', title = loc('Summary reports') %]
<p>
[% loc('This is a summary of all reports on this site; select a particular council to see the reports sent there.') %]
[% loc('Greyed-out lines are councils that no longer exist.') %]
</p>
<table cellpadding="3" cellspacing="1" border="0">
<tr>
<th>[% loc('Name') %]</th>
<th>[% loc('New problems') %]</th>
<th>[% loc('Older problems') %]</th>
<th>[% loc('Old problems,<br>state unknown') %]</th>
<th>[% loc('Recently fixed') %]</th>
<th>[% loc('Older fixed') %]</th>
</tr>
[% FOREACH area IN areas_info_sorted %]
<tr align="center"
[%- IF area.generation_high == 10 %] class="gone"
[%- ELSIF loop.count % 2 %] class="a"
[%- END -%]
>
<td align="left"><a href="[% area.url %]">[% area.name %]</a></td>
<td>[% open.${area.id}.new or 0 %]</td>
<td>[% open.${area.id}.older or 0 %]</td>
<td>[% open.${area.id}.unknown or 0 %]</td>
<td>[% fixed.${area.id}.new or 0 %]</td>
<td>[% fixed.${area.id}.old or 0 %]</td>
</tr>
[% END %]
</table>
[% INCLUDE 'footer.html' %]
|