blob: 159a595bc246a9a8672e7919743a0ca227a80651 (
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
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
|
[% INCLUDE 'header.html', title => '' %]
[% IF error %]
<p class="error">[% error %]</p>
[% END %]
<p id="expl">
[%
subhead
= c.cobrand.moniker == 'southampton'
? '(like graffiti, fly tipping, or broken paving slabs)'
: 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>
[% TRY %][% INCLUDE 'front/news.html' %][% CATCH file %][% END %]
[% PROCESS 'around/postcode_form.html' %]
<div id="front_intro">
<h2>[% loc('How to report a problem') %]</h2>
<ol>
<li>[% question %]</li>
<li>[% loc('Locate the problem on a map of the area') %]</li>
<li>[% loc('Enter details of the problem') %]</li>
<li>[% loc('We send it to the council on your behalf') %]</li>
</ol>
[% INCLUDE "front/stats.html" %]
[% TRY %][% INCLUDE "front/tips.html" %][% CATCH file %][% END %]
</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 %]
<a href="/report/[% p.id %]"><img border="0" height="100"
src="/photo/[% p.id %].tn.jpeg" 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_epoch( p.confirmed_local.epoch, 1 ) %]</small>
</li>
[% END %]
</ul>
[% END %]
</div>
[% END %]
[% INCLUDE 'footer.html' %]
|