diff --git a/app/views/index.html b/app/views/index.html index 8297eb77..fcca759b 100755 --- a/app/views/index.html +++ b/app/views/index.html @@ -172,6 +172,7 @@

COVID-19

@@ -180,6 +181,7 @@

flu

RSV

diff --git a/app/views/record-vaccinations/covid-19/too-old-warning.html b/app/views/record-vaccinations/covid-19/too-old-warning.html new file mode 100644 index 00000000..f8777052 --- /dev/null +++ b/app/views/record-vaccinations/covid-19/too-old-warning.html @@ -0,0 +1,40 @@ +{% extends 'layout.html' %} + +{% set pageName = "Vaccine product age warning" %} + +{% set currentSection = "vaccinate" %} + +{% block beforeContent %} + {{ backLink({ href: "/record-vaccinations/patient-history" }) }} +{% endblock %} + +{% block content %} +
+
+ + {% if data.firstName and data.lastName %} + {% set displayName = data.firstName ~ ' ' ~ data.lastName %} + {% else %} + {% set displayName = 'Patient Name' %} + {% endif %} + + {% set panelHtml %} +

Comirnaty 10 LP.8.1 is usually recommended for people aged 6 months to 11 years. {{ displayName }} is 13 years old.

+

Check before going ahead or refer to a prescriber for a patient specific direction (PSD).

+ + {{ button({ + "text": "Continue anyway", + "href": "/record-vaccinations/consent", + "classes": "nhsuk-button--reverse" + }) }} + {% endset %} + + {{ panel({ + titleText: displayName + " may be too old for this vaccine product", + html: panelHtml, + classes: "nhsuk-panel--interruption" + }) }} + +
+
+{% endblock %} diff --git a/app/views/record-vaccinations/covid-19/too-young-warning.html b/app/views/record-vaccinations/covid-19/too-young-warning.html index 994b0851..25eea959 100644 --- a/app/views/record-vaccinations/covid-19/too-young-warning.html +++ b/app/views/record-vaccinations/covid-19/too-young-warning.html @@ -21,7 +21,7 @@ {% endif %} {% set panelHtml %} -

Adjuvanted Quadrivalent Influenza Vaccine (aQIV) is not usually recommended for people under the age of 65. {{ displayName }} is 64 years old.

+

Comirnaty 30 LP.8.1 is usually recommended for people aged 12 and over. {{ displayName }} is 11 years old.

Check before going ahead or refer to a prescriber for a patient specific direction (PSD).

{{ button({ diff --git a/app/views/record-vaccinations/flu/too-old-warning.html b/app/views/record-vaccinations/flu/too-old-warning.html new file mode 100644 index 00000000..d03b1284 --- /dev/null +++ b/app/views/record-vaccinations/flu/too-old-warning.html @@ -0,0 +1,43 @@ + +{% extends 'layout.html' %} + +{% set pageName = "Vaccine product age warning" %} + +{% set currentSection = "vaccinate" %} + +{% block beforeContent %} + {{ backLink({ href: "/record-vaccinations/patient-history" }) }} +{% endblock %} + +{% block content %} +
+
+ + {% if data.firstName and data.lastName %} + {% set displayName = data.firstName ~ ' ' ~ data.lastName %} + {% else %} + {% set displayName = 'Patient Name' %} + {% endif %} + + {% set panelHtml %} +

Fluenz (LAIV) is usually recommended for people aged 2 years to 17 years. {{ displayName }} is 18 years old.

+

Check before going ahead or refer to a prescriber for a patient specific direction (PSD).

+ + {{ button({ + "text": "Continue anyway", + "href": "/record-vaccinations/consent", + "classes": "nhsuk-button--reverse" + }) }} + {% endset %} + + {{ panel({ + titleText: displayName + " may be too old for this vaccine product", + html: panelHtml, + classes: "nhsuk-panel--interruption" + }) }} + +
+
+ +{% endblock %} + diff --git a/app/views/record-vaccinations/flu/too-young-warning.html b/app/views/record-vaccinations/flu/too-young-warning.html index 37ff62fa..49e9b876 100644 --- a/app/views/record-vaccinations/flu/too-young-warning.html +++ b/app/views/record-vaccinations/flu/too-young-warning.html @@ -20,7 +20,7 @@ {% endif %} {% set panelHtml %} -

[Product name] is not usually recommended for people under the age of 65. {{ displayName }} is 64 years old.

+

Adjuvanted Trivalent Influenza Vaccine (aTIV) is usually recommended for people aged 50 and over. {{ displayName }} is 45 years old.

Check before going ahead or refer to a prescriber for a patient specific direction (PSD).

{{ button({