blob: 465bb031ba05c566d55e0b1aef4a088ecd17519c (
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
|
[% INCLUDE 'header.html', title => '' %]
[% IF error %]
<p class="error">[% error %]</p>
[% END %]
<p id="expl">
<strong>[% loc('Report, view, or discuss local problems') %]</strong>
</p>
[%
question
= c.cobrand.enter_postcode_text()
|| loc("Enter a nearby GB postcode, or street name and area");
%]
<form action="[% c.uri_for('/around') %]" method="get" name="postcodeForm" id="postcodeForm">
<label for="pc">[% question %]:</label>
<span><input type="text" name="pc" value="" id="pc" size="10" maxlength="200">
<input type="submit" value="[% loc('Go') %]" id="submit">
</span>
[% c.cobrand.form_elements('postcodeForm') %]
</form>
<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" %]
</div>
[% INCLUDE 'footer.html' %]
|