diff options
-rw-r--r-- | CHANGELOG.md | 2 | ||||
-rw-r--r-- | templates/web/base/contact/index.html | 4 |
2 files changed, 6 insertions, 0 deletions
diff --git a/CHANGELOG.md b/CHANGELOG.md index fff0c21a5..d2793b2a8 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -1,6 +1,8 @@ ## Releases * Unreleased + - Front end improvements: + - Extra help text on contact form #2149 * v2.3.2 (31st May 2018) - Front end improvements: diff --git a/templates/web/base/contact/index.html b/templates/web/base/contact/index.html index 1839b4c85..326c26ce8 100644 --- a/templates/web/base/contact/index.html +++ b/templates/web/base/contact/index.html @@ -103,6 +103,10 @@ [% END %] <textarea class="form-control required" name="message" id="form_message" rows="7" cols="50">[% message | html %]</textarea> + [% IF NOT problem AND NOT update %] + <p>[% loc('If you are contacting us about a specific report or update please include a link to the report in the message.') %]</p> + [% END %] + <input class="final-submit green-btn" type="submit" value="[% loc('Send') %]"> |