diff --git a/core/settings.py b/core/settings.py index 53d1cc1d..9a66042c 100644 --- a/core/settings.py +++ b/core/settings.py @@ -147,7 +147,7 @@ } } # Define a service name setting for page titles -SERVICE_NAME = "Find MOJ Data" +SERVICE_NAME = "Find MOJ data" GOV_UK_SUFFIX = "GOV.UK" MAX_RESULTS = 10_000 diff --git a/templates/base/base.html b/templates/base/base.html index 814e419a..f78ba38e 100644 --- a/templates/base/base.html +++ b/templates/base/base.html @@ -13,29 +13,7 @@ {% endblock %} {% include "base/navigation.html" %} -
-
-

- - {% if ENV == "dev" %} - - {% endif %} - {% if ENV == "test" %} - - {% endif %} - {% if ENV == "preprod" %} - - {% endif %} - - - This service is currently in development and feedback is being gathered through user research. - -

-
- {% block breadcrumbs %} {% endblock breadcrumbs %} diff --git a/templates/base/navigation.html b/templates/base/navigation.html index 5529e615..983748b5 100644 --- a/templates/base/navigation.html +++ b/templates/base/navigation.html @@ -1,51 +1,113 @@ - + +
\ No newline at end of file diff --git a/tests/selenium/conftest.py b/tests/selenium/conftest.py index 525eb1e0..7968bf35 100644 --- a/tests/selenium/conftest.py +++ b/tests/selenium/conftest.py @@ -257,4 +257,4 @@ def glossary_page(selenium) -> GlossaryPage: @pytest.fixture def page_titles(): pages = ["Home", "Search", "Details", "Glossary"] - return [f"{page} - Find MOJ Data - GOV.UK" for page in pages] + return [f"{page} - Find MOJ data - GOV.UK" for page in pages]