diff options
-rw-r--r-- | perllib/FixMyStreet/Cobrand/Bristol.pm | 2 | ||||
-rw-r--r-- | perllib/FixMyStreet/Cobrand/EastHerts.pm | 2 | ||||
-rw-r--r-- | perllib/FixMyStreet/Cobrand/Warwickshire.pm | 2 | ||||
-rw-r--r-- | templates/web/base/admin/extra-metadata-form.html | 2 | ||||
-rw-r--r-- | web/cobrands/bristol/layout.scss | 2 |
5 files changed, 4 insertions, 6 deletions
diff --git a/perllib/FixMyStreet/Cobrand/Bristol.pm b/perllib/FixMyStreet/Cobrand/Bristol.pm index 177e2172b..dd9907bd1 100644 --- a/perllib/FixMyStreet/Cobrand/Bristol.pm +++ b/perllib/FixMyStreet/Cobrand/Bristol.pm @@ -1,5 +1,5 @@ package FixMyStreet::Cobrand::Bristol; -use parent 'FixMyStreet::Cobrand::UKCouncils'; +use parent 'FixMyStreet::Cobrand::Whitelabel'; use strict; use warnings; diff --git a/perllib/FixMyStreet/Cobrand/EastHerts.pm b/perllib/FixMyStreet/Cobrand/EastHerts.pm index 806f9cc3c..7ca2e67cf 100644 --- a/perllib/FixMyStreet/Cobrand/EastHerts.pm +++ b/perllib/FixMyStreet/Cobrand/EastHerts.pm @@ -1,5 +1,5 @@ package FixMyStreet::Cobrand::EastHerts; -use parent 'FixMyStreet::Cobrand::UKCouncils'; +use parent 'FixMyStreet::Cobrand::Whitelabel'; use strict; use warnings; diff --git a/perllib/FixMyStreet/Cobrand/Warwickshire.pm b/perllib/FixMyStreet/Cobrand/Warwickshire.pm index ff28bc8b3..1bdf919da 100644 --- a/perllib/FixMyStreet/Cobrand/Warwickshire.pm +++ b/perllib/FixMyStreet/Cobrand/Warwickshire.pm @@ -1,5 +1,5 @@ package FixMyStreet::Cobrand::Warwickshire; -use base 'FixMyStreet::Cobrand::UKCouncils'; +use base 'FixMyStreet::Cobrand::Whitelabel'; use strict; use warnings; diff --git a/templates/web/base/admin/extra-metadata-form.html b/templates/web/base/admin/extra-metadata-form.html index 4fc5d8e3f..59d07ddf9 100644 --- a/templates/web/base/admin/extra-metadata-form.html +++ b/templates/web/base/admin/extra-metadata-form.html @@ -19,7 +19,7 @@ </select> </label> - <div class="admin-hint"><p>[% loc('The code used to store this field value in the database. e.g. <code>address</code> would be available as <code>problem.extra.address</code> in the templates.') %]</p></div> + <div class="admin-hint"><p>[% loc('The code used to store this field value in the database. e.g. <code>address</code> would be available as <code>report.get_extra_field_value("address")</code> in the templates.') %]</p></div> <label> [% loc('Code') %] <input name="metadata[[% loop.index %]].code" data-field-name="code" type=text value="[% meta.code | html %]"> diff --git a/web/cobrands/bristol/layout.scss b/web/cobrands/bristol/layout.scss index 5296261a2..07b39b08b 100644 --- a/web/cobrands/bristol/layout.scss +++ b/web/cobrands/bristol/layout.scss @@ -153,8 +153,6 @@ body.mappage { } .bristol_footer footer { - position: relative; - .footer-title { display: block; color: white; |