diff options
Diffstat (limited to 'templates/web')
4 files changed, 19 insertions, 2 deletions
diff --git a/templates/web/base/report/new/form_report.html b/templates/web/base/report/new/form_report.html index 9526b677c..ce8f69855 100644 --- a/templates/web/base/report/new/form_report.html +++ b/templates/web/base/report/new/form_report.html @@ -64,4 +64,5 @@ [% END %] <input type="hidden" id="single_body_only" name="single_body_only" value=""> + <input type="hidden" id="do_not_send" name="do_not_send" value=""> <input type="hidden" name="submit_problem" value="1"> diff --git a/templates/web/buckinghamshire/report/new/roads_message.html b/templates/web/buckinghamshire/report/new/roads_message.html index 772f38df4..e518e963c 100644 --- a/templates/web/buckinghamshire/report/new/roads_message.html +++ b/templates/web/buckinghamshire/report/new/roads_message.html @@ -1,6 +1,6 @@ -<div id="js-bucks-responsibility" class="box-warning hidden"> +<div id="js-roads-responsibility" class="box-warning hidden"> <strong>Invalid location</strong> - <div id="js-not-bucks-road" class="hidden js-responsibility-message"> + <div id="js-not-council-road" class="hidden js-responsibility-message"> <p>The selected road is not maintained by Buckinghamshire County Council.</p> <p>Please select another road.</p> </div> diff --git a/templates/web/fixmystreet.com/footer_extra_js.html b/templates/web/fixmystreet.com/footer_extra_js.html index 0e0300af7..c1ba95c25 100644 --- a/templates/web/fixmystreet.com/footer_extra_js.html +++ b/templates/web/fixmystreet.com/footer_extra_js.html @@ -3,6 +3,11 @@ scripts.push( version('/js/lazyload.js'), ); IF bodyclass.match('mappage'); + scripts.push( version('/cobrands/fixmystreet/assets.js') ); + scripts.push( version('/cobrands/bathnes/assets.js') ); + scripts.push( version('/cobrands/bristol/assets.js') ); + scripts.push( version('/cobrands/bromley/assets.js') ); + scripts.push( version('/cobrands/buckinghamshire/assets.js') ); scripts.push( version('/vendor/OpenLayers.Projection.OrdnanceSurvey.js'), ); diff --git a/templates/web/fixmystreet.com/report/new/roads_message.html b/templates/web/fixmystreet.com/report/new/roads_message.html new file mode 100644 index 000000000..da32d5a97 --- /dev/null +++ b/templates/web/fixmystreet.com/report/new/roads_message.html @@ -0,0 +1,11 @@ +<div id="js-roads-responsibility" class="box-warning hidden"> + <strong>Invalid location</strong> + <div id="js-not-council-road" class="hidden js-responsibility-message"> + <p>The selected road is not maintained by the Council.</p> + <p>Please select another road.</p> + </div> + <div id="js-not-a-road" class="hidden js-responsibility-message"> + <p>The location you have selected doesn't appear to be on a road.</p> + <p>Please select a road on which to make a report.</p> + </div> +</div> |