Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
15 changes: 15 additions & 0 deletions app/prototype_v4/content/closed.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
---
title: Sorry, the service is unavailable
hidePhaseBanner: true
hideFooterLinks: true
---

The online service has closed.

If you reached this page after submitting information then it has not been saved.

Call us on {{ serviceTelephone | telephoneLink }} to complete your lung cancer screening.

**Phone lines are open:**<br aria-hidden="true">
Monday to Friday 8am to 8pm<br aria-hidden="true">
Saturdays 8am to 1pm
19 changes: 19 additions & 0 deletions app/prototype_v4/content/paused.md
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
---
title: Sorry, the service is unavailable
hidePhaseBanner: true
hideFooterLinks: true
---

You will be able to use the service from Tuesday, 5 May 2026.
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

When we handover we need to ensure that it's clear to Engineers that this date is changed for suitable date

Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Let's review this page in UCD time with engineers to sense check the scenarios. Looking good to me!


If you reached this page after submitting information then it has not been saved. You will need to enter it again when the service is available.

You can complete your NHS lung cancer screening by phone instead.

Call us on {{ serviceTelephone | telephoneLink }}

**Phone lines are open:**<br aria-hidden="true">
Monday to Friday 8am to 8pm<br aria-hidden="true">
Saturdays 8am to 1pm

Once you have completed your NHS lung cancer screening by phone you cannot test the online service.
Copy link
Copy Markdown
Collaborator

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Like this content, clarifies the process for users

2 changes: 2 additions & 0 deletions app/prototype_v4/controllers/content.js
Original file line number Diff line number Diff line change
Expand Up @@ -70,3 +70,5 @@ exports.contact = renderContent('contact')
exports.cookies = renderContent('cookies')
exports.privacy = renderContent('privacy')
exports.terms = renderContent('terms')
exports.paused = renderContent('paused')
exports.closed = renderContent('closed')
4 changes: 4 additions & 0 deletions app/prototype_v4/routes.js
Original file line number Diff line number Diff line change
Expand Up @@ -206,6 +206,10 @@ router.get(`/prototype_${version}/privacy-policy`, contentController.privacy)

router.get(`/prototype_${version}/terms-of-use`, contentController.terms)

router.get(`/prototype_${version}/paused`, contentController.paused)

router.get(`/prototype_${version}/closed`, contentController.closed)

/// ------------------------------------------------------------------------ ///
/// Error pages
/// ------------------------------------------------------------------------ ///
Expand Down
4 changes: 2 additions & 2 deletions app/prototype_v4/views/layouts/main.html
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@
}) }}

<!-- Phase banner (inside header block) -->
{% if not hidePhaseBanner %}
{% if not (hidePhaseBanner or contentData.hidePhaseBanner) %}
<div class="nhsuk-phase-banner">
<div class="nhsuk-width-container">
<div class="nhsuk-phase-banner__content">
Expand Down Expand Up @@ -89,7 +89,7 @@
}
]
}
}) if not hideFooterLinks }}
}) if not (hideFooterLinks or contentData.hideFooterLinks) }}

{# <div class="nhsuk-footer__testing-links">
<div class="nhsuk-width-container">
Expand Down