blob: a143e90a2e5afa518c3ae9439bbef123b15a7955 (
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
|
[% INCLUDE 'header.html', title => loc('Reporting a problem'), bodyclass = 'mappage' %]
<form action="[% c.uri_for('/around') %]" method="get" name="mapForm" id="mapForm">
<div id="side-form">
<div id="report-a-problem-main">
[% INCLUDE 'around/postcode_form.html' %]
[% IF location_error %]
<p class="error">[% location_error %]</p>
[% END %]
[% IF possible_location_matches %]
<p>[% loc('We found more than one match for that location. We show up to ten matches, please try a different search if yours is not here.') %]</p>
<ul class="pc_alternatives">
[% FOREACH match IN possible_location_matches %]
<li><a href="/around?latitude=[% match.latitude | uri %];longitude=[% match.longitude | uri %]">[% match.address | html %]</a></li>
[% END %]
</ul>
[% END %]
</div>
</div>
</form>
[% INCLUDE 'footer.html' %]
|