diff options
Diffstat (limited to 'templates/web/base/alert/choose.html')
-rw-r--r-- | templates/web/base/alert/choose.html | 14 |
1 files changed, 14 insertions, 0 deletions
diff --git a/templates/web/base/alert/choose.html b/templates/web/base/alert/choose.html new file mode 100644 index 000000000..312b9f520 --- /dev/null +++ b/templates/web/base/alert/choose.html @@ -0,0 +1,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 plain-list"> + [% 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' %] |