diff options
author | Zarino Zappia <mail@zarino.co.uk> | 2018-09-18 16:22:15 +0100 |
---|---|---|
committer | Matthew Somerville <matthew-github@dracos.co.uk> | 2018-11-06 16:39:41 +0000 |
commit | 0cf9e2145e7bb62edd529418ccd6aeaf79ded646 (patch) | |
tree | 2a8359dfdfb18e1c94a27b02499c116116843ba0 /templates | |
parent | 7366075509383d3efba4202847579754f628f035 (diff) |
Clearer relocation options while reporting.
Now that the "Report a problem" link in the nav bar links, more often
than not, to the reporting form rather than the homepage, it could be
challenging to actually start a new report in a location *other* than
the one currently on screen.
Rather than adding a link to the homepage, this change hopefully adds
a link right at the moment the user expects it – right on the "Report
a problem" form.
It also gave us an opportunity to reword the "Wrong location" message
and give it an icon more suitable for high-dpi displays.
Fixes #2238.
Diffstat (limited to 'templates')
-rw-r--r-- | templates/web/base/report/new/fill_in_details_form.html | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/templates/web/base/report/new/fill_in_details_form.html b/templates/web/base/report/new/fill_in_details_form.html index a508b9307..c819d34a0 100644 --- a/templates/web/base/report/new/fill_in_details_form.html +++ b/templates/web/base/report/new/fill_in_details_form.html @@ -1,7 +1,10 @@ <h1>[% loc('Report your problem') %]</h1> [% IF report.used_map %] - <p class="change_location">[% loc('Wrong location? Just click again on the map.') %]</p> + <ul class="change_location"> + <li class="change_location__map">[% loc('Click the map or drag the pin to adjust the location') %]</li> + <li class="change_location__search">[% loc('Or <a href="/">search for a different location</a>') %]</li> + </ul> [% END %] [% TRY %][% INCLUDE 'report/new/roads_message.html' %][% CATCH file %][% END %] |