From 89cf6672907f39b1f4c2c9957b03b5944a6b3246 Mon Sep 17 00:00:00 2001 From: Anna-Sutton Date: Wed, 11 Feb 2026 16:40:57 +0000 Subject: [PATCH 1/5] Dose and eligibility updates Changed 'Which dose of [vaccination name] vaccine are you giving?' to 'Which dose of the [vaccination name] vaccine are you giving?' --- app/views/record-vaccinations/dose.html | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/app/views/record-vaccinations/dose.html b/app/views/record-vaccinations/dose.html index 227e3f6c..472563b3 100644 --- a/app/views/record-vaccinations/dose.html +++ b/app/views/record-vaccinations/dose.html @@ -1,6 +1,6 @@ {% extends 'layout.html' %} -{% set pageName = "Which dose of " + data.vaccine + " are you giving?" %} +{% set pageName = "Which dose of the " + data.vaccine + " are you giving?" %} {% set currentSection = "vaccinate" %} {% set organisationSetting = currentUser.organisations | findById(data.currentOrganisationId) %} @@ -17,7 +17,7 @@ {% if data.showError == "yes" %} {% set errors = [{ - text: "Select which dose of " + data.vaccine + " are you giving", + text: "Select which dose of the " + data.vaccine + " are you giving", href: "#vaccineDose" }] %} {% endif %} @@ -96,7 +96,7 @@ } if (errors | length) > 0, fieldset: { legend: { - text: "Which dose of " + data.vaccine + " vaccine are you giving?", + text: "Which dose of the " + data.vaccine + " vaccine are you giving?", classes: "nhsuk-fieldset__legend--l", isPageHeading: true } @@ -113,4 +113,4 @@ -{% endblock %} \ No newline at end of file +{% endblock %} From e8c30187f4bad28e729118249327a746aedd4ef5 Mon Sep 17 00:00:00 2001 From: Anna-Sutton Date: Wed, 11 Feb 2026 16:43:30 +0000 Subject: [PATCH 2/5] Changed text of 'Not sure' to 'I'm not sure' on Dose page --- app/views/record-vaccinations/dose.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/record-vaccinations/dose.html b/app/views/record-vaccinations/dose.html index 472563b3..7142c825 100644 --- a/app/views/record-vaccinations/dose.html +++ b/app/views/record-vaccinations/dose.html @@ -83,7 +83,7 @@ }), items) %} {% set items = (items.push({ - text: "Not sure", + text: "I'm not sure", value: "Not sure", checked: (data.vaccineDose == "Not sure") }), items) %} From 3831fd207bee0097a030f3cd96ce93a182535887 Mon Sep 17 00:00:00 2001 From: Anna-Sutton Date: Wed, 11 Feb 2026 16:46:40 +0000 Subject: [PATCH 3/5] Changed eligibility options to 'Based on age' and 'In an at-risk group' for MMRV And 6-in-1 on the Eligibility page --- app/views/record-vaccinations/eligibility.html | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/app/views/record-vaccinations/eligibility.html b/app/views/record-vaccinations/eligibility.html index 67e90916..fc976972 100644 --- a/app/views/record-vaccinations/eligibility.html +++ b/app/views/record-vaccinations/eligibility.html @@ -80,13 +80,13 @@ ] %} {% set 6in1EligibilityOptions = [ - "In an at-risk group", - "Age-based eligibility 0 to 5 years" + "Based on age", + "In an at-risk group" ] %} {% set MMRVEligibilityOptions = [ - "In a clinical risk group", - "Age-based eligibility 0 to 5 years" + "Based on age", + "In an at-risk group" ] %} {% block content %} @@ -164,4 +164,4 @@ -{% endblock %} \ No newline at end of file +{% endblock %} From b1e0f186f534d1fdf5a4417930ddd650970b0f07 Mon Sep 17 00:00:00 2001 From: Anna-Sutton Date: Wed, 11 Feb 2026 16:55:00 +0000 Subject: [PATCH 4/5] Added vaccination name to the eligibility question --- app/views/record-vaccinations/eligibility.html | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/app/views/record-vaccinations/eligibility.html b/app/views/record-vaccinations/eligibility.html index fc976972..cbc7924e 100644 --- a/app/views/record-vaccinations/eligibility.html +++ b/app/views/record-vaccinations/eligibility.html @@ -1,6 +1,6 @@ {% extends 'layout.html' %} -{% set pageName = "Why are you giving them the vaccine?" %} +{% set pageName = "Why are you giving them the " + data.vaccine + "?" %} {% set currentSection = "vaccinate" %} @@ -141,7 +141,7 @@ {% call fieldset({ legend: { - text: ("Why are you giving them the vaccine?" if data.vaccinationToday == 'yes' else "Why was the patient eligible for the vaccine?"), + text: ("Why are you giving them the " + data.vaccine + "?" if data.vaccinationToday == 'yes' else "Why was the patient eligible for the " + data.vaccine + "?"), size: "l", isPageHeading: true } From ff3da7c3a7cb4aab41080f280278a6228a3d7d1e Mon Sep 17 00:00:00 2001 From: Anna-Sutton Date: Wed, 11 Feb 2026 17:00:33 +0000 Subject: [PATCH 5/5] Added word 'vaccine' to the eligibility question. --- app/views/record-vaccinations/eligibility.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/record-vaccinations/eligibility.html b/app/views/record-vaccinations/eligibility.html index cbc7924e..2405ddba 100644 --- a/app/views/record-vaccinations/eligibility.html +++ b/app/views/record-vaccinations/eligibility.html @@ -141,7 +141,7 @@ {% call fieldset({ legend: { - text: ("Why are you giving them the " + data.vaccine + "?" if data.vaccinationToday == 'yes' else "Why was the patient eligible for the " + data.vaccine + "?"), + text: ("Why are you giving them the " + data.vaccine + " vaccine?" if data.vaccinationToday == 'yes' else "Why was the patient eligible for the " + data.vaccine + " vaccine?"), size: "l", isPageHeading: true }