Repoint footer and homepage links

Performance Platform is going away at 10am on Monday, so let’s point to
our Performance Page instead.
This commit is contained in:
Chris Hill-Scott
2021-03-11 12:40:02 +00:00
parent 4d0264d196
commit 67316df3aa
3 changed files with 4 additions and 4 deletions

View File

@@ -172,7 +172,7 @@
"text": "System status" "text": "System status"
}, },
{ {
"href": "https://www.gov.uk/performance/govuk-notify", "href": url_for('main.performance'),
"text": "Performance data" "text": "Performance data"
}, },
{ {

View File

@@ -135,7 +135,7 @@
</div> </div>
<p class="govuk-body"> <p class="govuk-body">
See the See the
<a class="govuk-link govuk-link--no-visited-state" href="https://www.gov.uk/performance/govuk-notify/government-services">list of services and organisations</a>. <a class="govuk-link govuk-link--no-visited-state" href="{{ url_for('main.performance') }}">list of services and organisations</a>.
</p> </p>
</div> </div>
</div> </div>

View File

@@ -40,8 +40,8 @@ def test_non_logged_in_user_can_see_homepage(
'9,999 services ' '9,999 services '
'See the list of services and organisations.' 'See the list of services and organisations.'
) )
assert page.select_one('#whos-using-notify a')['href'] == ( assert page.select_one('#whos-using-notify a')['href'] == url_for(
'https://www.gov.uk/performance/govuk-notify/government-services' 'main.performance'
) )