diff options
author | Matthew Somerville <matthew@mysociety.org> | 2012-05-30 12:23:54 +0100 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2012-05-30 12:23:54 +0100 |
commit | 7622984356a187d7a781ec26bf6dcadcbbd6d81f (patch) | |
tree | da0862876f68420309fc34ff4dfea487732cf5df | |
parent | cf3f4120f7e11917358c10863b1d6b53d14e471e (diff) |
Don't show not-sent-to-council message on main site for Bromley reports that they will be.
-rw-r--r-- | templates/web/fixmystreet/report/display.html | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/templates/web/fixmystreet/report/display.html b/templates/web/fixmystreet/report/display.html index 369a0c2b2..515d5c693 100644 --- a/templates/web/fixmystreet/report/display.html +++ b/templates/web/fixmystreet/report/display.html @@ -57,7 +57,11 @@ [% IF c.cobrand.moniker != 'emptyhomes' %] <div class="general-sidebar-notes"> - <p>[% loc( 'Please note that updates are not sent to the council. If you leave your name it will be public. Your information will only be used in accordance with our <a href="/faq#privacy">privacy policy</a>' ) %]</p> + <p> + [% IF problem.council != '2482' OR problem.send_method_used != 'Open311' %] + [% loc( 'Please note that updates are not sent to the council.' ) %] + [% END %] + [% loc( 'Your information will only be used in accordance with our <a href="/faq#privacy">privacy policy</a>' ) %]</p> </div> [% END %] |