diff options
author | Struan Donald <struan@exo.org.uk> | 2011-05-23 15:04:48 +0100 |
---|---|---|
committer | Struan Donald <struan@exo.org.uk> | 2011-05-23 15:04:48 +0100 |
commit | 5d2ba91cd291a99e03b8ec5f875e7926e5add6f2 (patch) | |
tree | ad6b78b0689ecbb1230ac2bd30f15fe9c6203364 | |
parent | 9cfd82314c739315633bcd8463a44883d13e3ee1 (diff) |
show correct may we display details message for empty homes cobrand
-rw-r--r-- | templates/web/default/report/new/fill_in_details.html | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/templates/web/default/report/new/fill_in_details.html b/templates/web/default/report/new/fill_in_details.html index 5bcce220a..1384bd7e5 100644 --- a/templates/web/default/report/new/fill_in_details.html +++ b/templates/web/default/report/new/fill_in_details.html @@ -116,8 +116,11 @@ [%# if there is nothing in the name field then set check box as default on form %] <input type="checkbox" name="may_show_name" id="form_may_show_name" value="1"[% ' checked' IF !report.anonymous || !report.name %]> - <!-- FIXME - empythomes should be 'Can we show your name on the site?'--> + [% IF c.cobrand.moniker == 'emptyhomes' %] + <label for="form_may_show_name">[% loc('Can we show your name on the site?') %]</label> + [% ELSE %] <label for="form_may_show_name">[% loc('Can we show your name publicly?') %]</label> + [% END %] <small>[% loc('(we never show your email address or phone number)') %]</small> </div> |