blob: 77c2cecdf78ca6c311a066ddb7c81644a890ebf9 (
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
|
[%
fms_councils = {
'Angus Council' = 'fix.angus.gov.uk'
'Bromley Council' = 'fix.bromley.gov.uk'
'Bristol City Council' = 'fixmystreet.bristol.gov.uk'
'East Hertfordshire District Council' = 'fixmystreet.eastherts.gov.uk'
'Hart District Council' = 'hart.fixmystreet.com'
'Oxfordshire County Council' = 'fixmystreet.oxfordshire.gov.uk'
'Stevenage Borough Council' = 'stevenage.fixmystreet.com',
'Royal Borough of Greenwich' = 'fix.royalgreenwich.gov.uk'
'Warwickshire County Council' = 'warwickshire.fixmystreet.com'
}
secure = {
'fixmystreet.bristol.gov.uk' = 's'
'fix.bromley.gov.uk' = 's'
'fix.angus.gov.uk' = 's'
'fixmystreet.eastherts.gov.uk' = 's'
}
site = fms_councils.${body.name}
%]
[% IF site %]
<tr align="center"
[%- IF ! (loop.count % 2) %] class="a"
[%- END %]>
<td class="title" colspan="6" style="padding-top:0">
<small title="This council's online reporting is powered by FixMyStreet">(includes reports from
<a href="http[% secure.$site %]://[% site %]">[% site %]</a> using
<a href="/about/council">FixMyStreet for Councils</a>)</small>
</td>
</tr>
[% END %]
|