diff options
author | Struan Donald <struan@exo.org.uk> | 2018-07-04 16:45:20 +0100 |
---|---|---|
committer | Matthew Somerville <matthew-github@dracos.co.uk> | 2018-08-03 21:35:40 +0100 |
commit | b8e851216b28394181c1e695ccc1aaf6b920fc9c (patch) | |
tree | 51ac5016763a40c21bff04ffd78a81bec38ae1a9 | |
parent | 30426bc093541066f8cc2f40b4a23261d5e4526c (diff) |
show not on roads message on national site
currently will show even if it's only appropriate for one body
-rw-r--r-- | templates/web/fixmystreet.com/report/new/roads_message.html | 11 |
1 files changed, 11 insertions, 0 deletions
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> |