diff options
author | Matthew Somerville <matthew@mysociety.org> | 2012-10-03 18:00:00 +0100 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2012-10-03 18:00:00 +0100 |
commit | 2fb6bc208ed93515d80e99f765080c4dc1f7c720 (patch) | |
tree | 90a4b92282076760d2a285e7f729f4bf244c5a7e | |
parent | fae33181698a051204c933a42c4587e985f2d984 (diff) |
Show sidebar if not-FMB or council user, not both.
-rw-r--r-- | templates/web/fixmystreet/report/new/fill_in_details_form.html | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/templates/web/fixmystreet/report/new/fill_in_details_form.html b/templates/web/fixmystreet/report/new/fill_in_details_form.html index ab427fbe7..2662ac808 100644 --- a/templates/web/fixmystreet/report/new/fill_in_details_form.html +++ b/templates/web/fixmystreet/report/new/fill_in_details_form.html @@ -15,7 +15,7 @@ [% PROCESS 'report/new/councils_text.html' %] [% END %] - [% IF c.cobrand.moniker != 'fixmybarangay' && c.user && c.user.from_council %] + [% IF c.cobrand.moniker != 'fixmybarangay' || ( c.user && c.user.from_council ) %] <div id="report-a-problem-sidebar"> <!-- The text for this section needs checking, but I can't work out which bit comes from where @@ -128,7 +128,7 @@ <label class="inline" for="form_may_show_name">[% loc('Show my name publicly') %]</label> </div> - [% IF c.cobrand.moniker != 'fixmybarangay' && c.user && c.user.from_council %] + [% IF c.cobrand.moniker != 'fixmybarangay' || ( c.user && c.user.from_council ) %] <div class="general-sidebar-notes"> <p>[% loc('We never show your email address or phone number.') %]</p> </div> |