diff options
author | Matthew Somerville <matthew@mysociety.org> | 2014-12-17 11:21:28 +0000 |
---|---|---|
committer | Matthew Somerville <matthew-github@dracos.co.uk> | 2014-12-17 12:15:03 +0000 |
commit | 00090170f96ae43f521ce29a3731859ca5f6738a (patch) | |
tree | e31c3d9125c13025771f03a317622ca0c4e6fe38 /templates/web/fixmystreet.com/contact/who.html | |
parent | e57f715a4625507cf6720d22e676c606bcb56053 (diff) |
Version 1.5.2.v1.5.2
Includes:
* [UK] Don't show topic form field when reporting abuse.
* Use token in moderation response URL to prevent hidden report leak.
* Make sure successful submission page is full width.
Diffstat (limited to 'templates/web/fixmystreet.com/contact/who.html')
-rw-r--r-- | templates/web/fixmystreet.com/contact/who.html | 6 |
1 files changed, 4 insertions, 2 deletions
diff --git a/templates/web/fixmystreet.com/contact/who.html b/templates/web/fixmystreet.com/contact/who.html index 7084c17dc..cdfc4eff8 100644 --- a/templates/web/fixmystreet.com/contact/who.html +++ b/templates/web/fixmystreet.com/contact/who.html @@ -1,3 +1,4 @@ +[% IF NOT problem %] <h4>Topic:</h4> [% IF field_errors.dest %] @@ -55,8 +56,8 @@ </div> <div class="checkbox-group"> - <input name="dest" id="dest_feeback" type="radio" value="feeback" class="required"[% IF dest AND dest == 'feeback' %] checked[% END %]> - <label class="inline" for="dest_feeback">I have feedback about the site</label> + <input name="dest" id="dest_feedback" type="radio" value="feedback" class="required"[% IF dest AND dest == 'feedback' %] checked[% END %]> + <label class="inline" for="dest_feedback">I have feedback about the site</label> </div> <div class="checkbox-group"> @@ -73,3 +74,4 @@ <input name="dest" id="dest_update" type="radio" value="update"[% IF dest AND dest == 'update' %] checked[% END %]> <label class="inline" for="dest_update">My street problem hasn't been fixed</label> </div> +[% END %] |