Skip to content

Commit 2065f28

Browse files
committed
Remove reference to DLUHC
1 parent 5e93e21 commit 2065f28

File tree

4 files changed

+11
-7
lines changed

4 files changed

+11
-7
lines changed

application/factory.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,11 @@ def base_context_processor():
5252

5353
def global_variables_context_processor():
5454
return {
55-
"github_discussion_base_url": "https://github.com/digital-land/data-standards-backlog/discussions"
55+
"site_settings": {
56+
"name": "Planning considerations",
57+
"team_name": "Data Design team",
58+
},
59+
"github_discussion_base_url": "https://github.com/digital-land/data-standards-backlog/discussions",
5660
}
5761

5862
app.context_processor(global_variables_context_processor)

application/templates/considerations.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -22,10 +22,10 @@ <h2 class="govuk-notification-banner__title" id="govuk-notification-banner-title
2222
</div>
2323
{% endif %}
2424
{% endwith %}
25-
<h1 class="govuk-heading-xl">DLUHC Planning considerations</h1>
25+
<h1 class="govuk-heading-xl">Planning considerations backlog</h1>
2626

2727
<p class="govuk-body-l">
28-
This is the list of planning considerations on the planning data standards team's backlog.
28+
This is the list of planning considerations on the {{ site_settings.team_name }}'s backlog.
2929
</p>
3030

3131
<details class="govuk-details">

application/templates/index.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -7,10 +7,10 @@
77
<div class="app-masthead">
88
<div class="govuk-width-container">
99
<h1 class="govuk-heading-xl app-masthead__title govuk-!-margin-bottom-2">
10-
Planning considerations manager
10+
Planning considerations
1111
</h1>
1212
<p class="govuk-body-l govuk-!-margin-bottom-0 app-masthead__sub-title">
13-
This tool is used to manage the work of the data standards team
13+
This tool is used to manage the work of the {{ site_settings.team_name }}
1414
</p>
1515
</div>
1616
</div>

application/templates/layouts/base.html

+2-2
Original file line numberDiff line numberDiff line change
@@ -43,7 +43,7 @@
4343
<div class="govuk-header__container govuk-width-container">
4444
<div class="govuk-header__logo">
4545
<a href="{{ url_for('main.index') }}" class="govuk-header__link govuk-header__link--homepage">
46-
DLUHC Planning considerations
46+
{{ site_settings.name }}
4747
</a>
4848
</div>
4949
<div class="govuk-header__content">
@@ -52,7 +52,7 @@
5252
<ul id="navigation" class="govuk-header__navigation-list">
5353
<li class="govuk-header__navigation-item">
5454
<a class="govuk-header__link" href="{{ url_for('planning_consideration.considerations') }}">
55-
Planning considerations
55+
Backlog
5656
</a>
5757
</li>
5858
<li class="govuk-header__navigation-item">

0 commit comments

Comments
 (0)