diff options
Diffstat (limited to 'templates/web')
-rw-r--r-- | templates/web/base/report/_inspect.html | 10 | ||||
-rw-r--r-- | templates/web/bathnes/around/intro.html | 3 | ||||
-rw-r--r-- | templates/web/bathnes/report/_inspect_reject_button.html | 3 | ||||
-rw-r--r-- | templates/web/buckinghamshire/report/new/inline-tips.html | 12 |
4 files changed, 24 insertions, 4 deletions
diff --git a/templates/web/base/report/_inspect.html b/templates/web/base/report/_inspect.html index 222780dcb..e2db1ea97 100644 --- a/templates/web/base/report/_inspect.html +++ b/templates/web/base/report/_inspect.html @@ -53,9 +53,13 @@ <a href="#" class="btn btn--block btn--geolocate">[% loc('Set to my current location') %]</a> </p> [% IF permissions.report_reject %] - <p> - <a href="[% c.uri_for( '/contact', { id => problem.id, reject => 1 } ) %]" class="btn btn--block">[% loc('Reject report') %]</a> - </p> + [% TRY %] + [% INCLUDE 'report/_inspect_reject_button.html' %] + [% CATCH file %] + <p> + <a href="[% c.uri_for( '/contact', { id => problem.id, reject => 1 } ) %]" class="btn btn--block">[% loc('Reject report') %]</a> + </p> + [% END %] [% END %] </div> diff --git a/templates/web/bathnes/around/intro.html b/templates/web/bathnes/around/intro.html index 06965b0ac..19a78d800 100644 --- a/templates/web/bathnes/around/intro.html +++ b/templates/web/bathnes/around/intro.html @@ -1 +1,2 @@ -<h1>Report problems on the road</h1> +<h1>Report a problem<br /> +Roads, pavements, and parks</h1> diff --git a/templates/web/bathnes/report/_inspect_reject_button.html b/templates/web/bathnes/report/_inspect_reject_button.html new file mode 100644 index 000000000..33b3a9d80 --- /dev/null +++ b/templates/web/bathnes/report/_inspect_reject_button.html @@ -0,0 +1,3 @@ +<p> + <a href="[% c.uri_for( '/contact', { id => problem.id, reject => 1 } ) %]" class="btn btn--block">Council Connect Return</a> +</p> diff --git a/templates/web/buckinghamshire/report/new/inline-tips.html b/templates/web/buckinghamshire/report/new/inline-tips.html new file mode 100644 index 000000000..b788bafe7 --- /dev/null +++ b/templates/web/buckinghamshire/report/new/inline-tips.html @@ -0,0 +1,12 @@ +<div class="description_tips" aria-label="Tips for successful reports"> + <ul class="do"> + <li>Be polite</li> + <li>Use exact locations</li> + <li>Say how long the issue’s been present</li> + <li>Please only log <strong>one issue</strong> per report</li> + </ul> + <ul class="dont"> + <li>Don’t identify or accuse other people</li> + <li>Don’t include private contact details in the description</li> + </ul> +</div> |