diff options
author | Matthew Somerville <matthew@mysociety.org> | 2020-02-04 15:46:59 +0000 |
---|---|---|
committer | Matthew Somerville <matthew@mysociety.org> | 2020-02-13 18:26:37 +0000 |
commit | b4b6bdadb850c9f69fd13c3dd253523262e746d1 (patch) | |
tree | c29cb10df044f474f2bcad3648c807bf348b62b2 | |
parent | 0e4bd8720283e41d8030384cd748c4710230f48d (diff) |
[UK Councils] Include highways code where relevant
-rw-r--r-- | templates/web/bathnes/footer_extra_js.html | 1 | ||||
-rw-r--r-- | templates/web/buckinghamshire/footer_extra_js.html | 1 | ||||
-rw-r--r-- | templates/web/cheshireeast/footer_extra_js.html | 1 | ||||
-rw-r--r-- | templates/web/lincolnshire/footer_extra_js.html | 1 | ||||
-rw-r--r-- | templates/web/rutland/footer_extra_js.html | 3 |
5 files changed, 7 insertions, 0 deletions
diff --git a/templates/web/bathnes/footer_extra_js.html b/templates/web/bathnes/footer_extra_js.html index c539db75f..3d7cdb0dc 100644 --- a/templates/web/bathnes/footer_extra_js.html +++ b/templates/web/bathnes/footer_extra_js.html @@ -6,6 +6,7 @@ IF bodyclass.match('mappage'); version('/vendor/OpenLayers.Projection.OrdnanceSurvey.js'), version('/cobrands/fixmystreet/assets.js'), version('/cobrands/bathnes/assets.js'), + version('/cobrands/highways/assets.js'), ); END %] diff --git a/templates/web/buckinghamshire/footer_extra_js.html b/templates/web/buckinghamshire/footer_extra_js.html index c0184dfa3..662c936e3 100644 --- a/templates/web/buckinghamshire/footer_extra_js.html +++ b/templates/web/buckinghamshire/footer_extra_js.html @@ -6,6 +6,7 @@ IF bodyclass.match('mappage'); version('/vendor/OpenLayers.Projection.OrdnanceSurvey.js'), version('/cobrands/fixmystreet/assets.js'), version('/cobrands/buckinghamshire/assets.js'), + version('/cobrands/highways/assets.js'), ); END %] diff --git a/templates/web/cheshireeast/footer_extra_js.html b/templates/web/cheshireeast/footer_extra_js.html index 9227c2ac4..c30722fbd 100644 --- a/templates/web/cheshireeast/footer_extra_js.html +++ b/templates/web/cheshireeast/footer_extra_js.html @@ -6,6 +6,7 @@ IF bodyclass.match('mappage'); version('/vendor/OpenLayers.Projection.OrdnanceSurvey.js'), version('/cobrands/fixmystreet/assets.js'), version('/cobrands/cheshireeast/assets.js'), + version('/cobrands/highways/assets.js'), ); END %] diff --git a/templates/web/lincolnshire/footer_extra_js.html b/templates/web/lincolnshire/footer_extra_js.html index b985b725a..b1bc9b739 100644 --- a/templates/web/lincolnshire/footer_extra_js.html +++ b/templates/web/lincolnshire/footer_extra_js.html @@ -6,6 +6,7 @@ IF bodyclass.match('mappage'); version('/vendor/OpenLayers.Projection.OrdnanceSurvey.js'), version('/cobrands/fixmystreet/assets.js'), version('/cobrands/lincolnshire/assets.js'), + version('/cobrands/highways/assets.js'), ); END %] diff --git a/templates/web/rutland/footer_extra_js.html b/templates/web/rutland/footer_extra_js.html index abd131cbc..b9384c218 100644 --- a/templates/web/rutland/footer_extra_js.html +++ b/templates/web/rutland/footer_extra_js.html @@ -3,6 +3,9 @@ IF bodyclass.match('mappage'); scripts.push( version('/cobrands/fixmystreet-uk-councils/js.js'), version('/cobrands/fixmystreet-uk-councils/council_validation_rules.js'), + version('/vendor/OpenLayers.Projection.OrdnanceSurvey.js'), + version('/cobrands/fixmystreet/assets.js'), + version('/cobrands/highways/assets.js'), ); END %] |