diff options
-rw-r--r-- | CHANGELOG.md | 1 | ||||
-rw-r--r-- | templates/web/base/around/_error_multiple.html | 3 | ||||
-rw-r--r-- | templates/web/base/around/postcode_form.html | 4 |
3 files changed, 6 insertions, 2 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index ad059b216..24109c75b 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -18,6 +18,7 @@ - Improve performance of various pages, especially front. #1903 - Don't show geolocation link on non-HTTPS pages. - More prominent "Hide pins" link on map pages, to aid reporting in busy areas. #525 + - Improve location disambiguation page on small screens. #1918 - Bugfixes - Shortlist menu item always remains a link #1855 - Fix encoded entities in RSS output. #1859 diff --git a/templates/web/base/around/_error_multiple.html b/templates/web/base/around/_error_multiple.html index b47a91ca9..ca047f1d0 100644 --- a/templates/web/base/around/_error_multiple.html +++ b/templates/web/base/around/_error_multiple.html @@ -3,12 +3,13 @@ [% 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> + <p>[% loc('We found more than one match for that location.') %]</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> + <p>[% loc('We show up to ten matches, please try a different search if yours is not here.') %]</p> [% END %] [% IF partial_token %] diff --git a/templates/web/base/around/postcode_form.html b/templates/web/base/around/postcode_form.html index e0277614d..efb639eda 100644 --- a/templates/web/base/around/postcode_form.html +++ b/templates/web/base/around/postcode_form.html @@ -1,6 +1,8 @@ <div id="front-main"> <div id="front-main-container"> - [% INCLUDE 'around/intro.html' %] + [% UNLESS possible_location_matches %] + [% INCLUDE 'around/intro.html' %] + [% END %] [% question = c.cobrand.enter_postcode_text || loc('Enter a nearby street name and area'); |