blob: cea0f832a8d6eaa229d7da1867947beed8305071 (
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
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
|
[% INCLUDE 'header.html', title = '' %]
[% IF error %]
<p class="error">[% error %]</p>
[% END %]
<p id="expl">
[%
subhead = loc('(like graffiti, fly tipping, broken paving slabs, or street lighting)');
%]
<strong>[% loc('Report, view, or discuss local problems') %]</strong>
[% IF subhead != ' ' %]
<small>[% subhead %]</small>
[% END %]
</p>
[% PROCESS 'around/postcode_form.html' %]
<div id="front_intro">
[% INCLUDE 'index-steps.html' %]
</div>
[%
recent_photos = c.cobrand.recent_photos('front', 3);
probs = c.cobrand.recent();
%]
[% IF probs.size || recent_photos.size %]
<div id="front_recent">
<h2>[% loc('Recently reported problems') %]</h2>
[% IF recent_photos.size %]
<p id="front_photos">
[% FOREACH p IN recent_photos;
photo = p.get_photo_params;
%]
<a href="/report/[% p.id %]"><img border="0" height="100"
src="[% photo.url_tn %]" alt="[% p.title | html %]" title="[% p.title | html %]"></a>
[% END %]
</p>
[% END %]
[% IF probs.size %]
<ul id="nearby_lists">
[% FOREACH p IN probs %]
<li>
<a href="/report/[% p.id %]">[% p.title | html %]</a>
<small>[% prettify_dt( p.confirmed, 1 ) %]</small>
</li>
[% END %]
</ul>
[% END %]
</div>
[% END %]
[% INCLUDE 'footer.html' %]
|