diff options
author | Zarino Zappia <mail@zarino.co.uk> | 2018-09-18 16:22:15 +0100 |
---|---|---|
committer | Zarino Zappia <mail@zarino.co.uk> | 2018-09-19 13:40:14 +0100 |
commit | 506938574095ebeee250cdf8987e025d8897de91 (patch) | |
tree | 6916f8efc8b5dbb9193f21909ac073641302ffef /templates | |
parent | 48c0835f2dd2bb130eb0ae3703f3f2477cd3042e (diff) |
Clearer relocation options while you’re reporting a problem
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 %] |