blob: fad365088cc8f1db8d699adde46a9949fed0ac81 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
[% INCLUDE 'header.html', title => loc('Local RSS feeds and email alerts') %]
<h1>[% loc('Local RSS feeds and email alerts') %]</h1>
[% 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="[% choose_target_uri %]?latitude=[% match.latitude | uri %];longitude=[% match.longitude | uri %]">[% match.address | html %]</a></li>
[% END %]
</ul>
[% END %]
[% INCLUDE 'footer.html' %]
|