diff options
-rw-r--r-- | templates/web/bromley/index.html | 2 | ||||
-rw-r--r-- | templates/web/bromley/report/display.html | 4 | ||||
-rw-r--r-- | templates/web/bromley/tokens/confirm_problem.html | 11 |
3 files changed, 14 insertions, 3 deletions
diff --git a/templates/web/bromley/index.html b/templates/web/bromley/index.html index 2f6a1b5bd..6398eba02 100644 --- a/templates/web/bromley/index.html +++ b/templates/web/bromley/index.html @@ -44,7 +44,7 @@ Modernizr.load({ </div> <p>This is primarily for reporting physical problems that can be fixed -like graffiti, fly tipping, or broken paving slabs to report other +like graffiti, cleansing issues or road defects. To report other kinds of problems like missed bins use our <a href="http://www.bromley.gov.uk/report">online report it forms</a>. </p> diff --git a/templates/web/bromley/report/display.html b/templates/web/bromley/report/display.html index ad06f923b..0e25f2dc2 100644 --- a/templates/web/bromley/report/display.html +++ b/templates/web/bromley/report/display.html @@ -56,7 +56,7 @@ [% 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 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> </div> [% END %] @@ -199,7 +199,7 @@ <input type="text" value="[% names.last || last_name | html %]" name="last_name" id="form_last_name" placeholder="[% loc('Your last name') %]"> <div class="checkbox-group"> - <input type="checkbox" name="may_show_name" id="form_may_show_name" value="1"[% ' checked' UNLESS update.anonymous %]> + <input type="checkbox" name="may_show_name" id="form_may_show_name" value="1"[% ' checked' IF update AND NOT update.anonymous %]> <label class="inline" for="form_may_show_name">[% loc('Show my name publicly') %]</label> </div> <div class="checkbox-group"> diff --git a/templates/web/bromley/tokens/confirm_problem.html b/templates/web/bromley/tokens/confirm_problem.html new file mode 100644 index 000000000..840f0b061 --- /dev/null +++ b/templates/web/bromley/tokens/confirm_problem.html @@ -0,0 +1,11 @@ +[% INCLUDE 'header.html', title = loc('Confirmation') %] + +<h1>[% loc('Confirmation') %]</h1> + +<p class="confirmed"> +Thank you. You have successfully confirmed your report +and this will now be investigated by the council. +You can <a href="[% c.uri_for( '/report', problem.id ) %]">view the problem on this site</a>. +</p> + +[% INCLUDE 'footer.html' %] |