diff options
-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> |