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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
|
[% INCLUDE 'header.html', title = loc('Local RSS feeds and email alerts'), bodyclass = 'fullwidthpage' %]
<h1>[% loc('Local RSS feeds and email alerts') %]</h1>
<p>
[% IF c.cobrand.is_council %]
[% tprintf(loc('%s has a variety of RSS feeds and email alerts for local
problems, including alerts for all problems within a particular ward, or all
problems within a certain distance of a particular location.', "%s is the site name"), site_name) %]
[% ELSE %]
[% tprintf(loc('%s has a variety of RSS feeds and email alerts for local problems, including
alerts for all problems within a particular ward or council, or all problems
within a certain distance of a particular location.', "%s is the site name"), site_name) %]
[% END %]
</p>
[% IF location_error %]
<div class="error">[% location_error %]</div>
[% ELSE %]
[% INCLUDE 'errors.html' %]
[% END %]
<p>
[% IF c.cobrand.is_council %]
[% tprintf(loc('To find out what local alerts we have for you, please enter your %s postcode or street name and area:'), c.cobrand.council_area) %]
[% ELSE %]
[% loc('To find out what local alerts we have for you, please enter your postcode or street name and area' ) %]
[% END %]
</p>
<form method="get" action="/alert/list" class="form-box">
<fieldset>
<div class="form-txt-submit-box">
<input class="form-control" type="text" name="pc" value="[% pc | html %]" placeholder="[% tprintf(loc('e.g. ‘%s’ or ‘%s’'), c.cobrand.example_places) %]">
<input class="green-btn" type="submit" value="[% loc('Go') %]">
</div>
</fieldset>
</form>
[% IF photos.size %]
<h2>[% loc('Some photos of recent reports') %]</h2>
<div class="alerts__nearby-activity__photos">
[% FOREACH p IN photos %]
<a href="/report/[% p.id %]">
<img border="0" height="100" src="[% p.photos.first.url_tn %]"
alt="[% p.title | html %]" title="[% p.title | html %]">
</a>
[% END %]
</div>
[% END %]
[% INCLUDE 'footer.html' %]
|