From c280b9db873634a93202ef75e1a5185df4841080 Mon Sep 17 00:00:00 2001 From: Anna-Sutton Date: Mon, 7 Sep 2026 11:37:29 +0100 Subject: [PATCH 1/6] Update vaccine.html Changed vaccine to vaccination in page name --- app/views/record-vaccinations/vaccine.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/record-vaccinations/vaccine.html b/app/views/record-vaccinations/vaccine.html index df7366bb..b819d6ff 100644 --- a/app/views/record-vaccinations/vaccine.html +++ b/app/views/record-vaccinations/vaccine.html @@ -1,6 +1,6 @@ {% extends 'layout.html' %} -{% set pageName = "Which vaccine are you giving?" %} +{% set pageName = "Which vaccination are you giving?" %} {% set currentSection = "vaccinate" %} {% set organisationSetting = currentUser.organisations | findById(data.currentOrganisationId) %} From 42870b3b49d2273075db2add5a00638c945f5e1f Mon Sep 17 00:00:00 2001 From: Anna-Sutton Date: Mon, 7 Sep 2026 13:17:58 +0100 Subject: [PATCH 2/6] Update vaccine.html Added hint text to London flu radio --- app/views/record-vaccinations/vaccine.html | 3 +++ 1 file changed, 3 insertions(+) diff --git a/app/views/record-vaccinations/vaccine.html b/app/views/record-vaccinations/vaccine.html index b819d6ff..5ec8b0cf 100644 --- a/app/views/record-vaccinations/vaccine.html +++ b/app/views/record-vaccinations/vaccine.html @@ -93,6 +93,9 @@ {% set items = (items.push({ value: vaccine.name, text: (vaccine.name | capitaliseFirstLetter), + hint: { + text: "Only select this if you are giving the vaccine as part of the locally commissioned London flu service that targets specific groups" + } if vaccine.name == "flu (London service)", conditional: { html: conditionalHtml } if vaccine.products From 7a004dbd3ddd95018ae863cdf59a8465566937c0 Mon Sep 17 00:00:00 2001 From: Anna-Sutton Date: Mon, 7 Sep 2026 13:37:54 +0100 Subject: [PATCH 3/6] Changed vaccination back to vaccine in page name --- app/views/record-vaccinations/vaccine.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/record-vaccinations/vaccine.html b/app/views/record-vaccinations/vaccine.html index 5ec8b0cf..640e6d1f 100644 --- a/app/views/record-vaccinations/vaccine.html +++ b/app/views/record-vaccinations/vaccine.html @@ -1,6 +1,6 @@ {% extends 'layout.html' %} -{% set pageName = "Which vaccination are you giving?" %} +{% set pageName = "Which vaccine are you giving?" %} {% set currentSection = "vaccinate" %} {% set organisationSetting = currentUser.organisations | findById(data.currentOrganisationId) %} From cfd677ff56336b099b6356b936199e2e381fbf74 Mon Sep 17 00:00:00 2001 From: Anna-Sutton Date: Tue, 8 Sep 2026 09:23:12 +0100 Subject: [PATCH 4/6] Add hint for London flu service vaccine option --- app/views/vaccines/choose-vaccine.html | 20 ++++++++++++-------- 1 file changed, 12 insertions(+), 8 deletions(-) diff --git a/app/views/vaccines/choose-vaccine.html b/app/views/vaccines/choose-vaccine.html index 1684bebd..9bbc9f23 100644 --- a/app/views/vaccines/choose-vaccine.html +++ b/app/views/vaccines/choose-vaccine.html @@ -42,14 +42,18 @@ {% endset %} {% endif %} - {% set items = (items.push({ - value: vaccine.name, - text: (vaccine.name | capitaliseFirstLetter), - conditional: { - html: conditionalHtml - } if vaccine.products - }), items) %} - {% endfor %} + + {% set items = (items.push({ + value: vaccine.name, + text: (vaccine.name | capitaliseFirstLetter), + hint: { + text: "Only select this for the London flu service that targets specific groups" + } if vaccine.name == "flu (London service)", + conditional: { + html: conditionalHtml + } if vaccine.products + }), items) %} + {% endfor %} {{ radios({ "idPrefix": "vaccine", From 139e82d8c2a9d459e9ab794f3d8096eb713c03dd Mon Sep 17 00:00:00 2001 From: Anna-Sutton Date: Tue, 8 Sep 2026 15:11:26 +0100 Subject: [PATCH 5/6] Update hint text for London flu service vaccine --- app/views/vaccines/choose-vaccine.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/vaccines/choose-vaccine.html b/app/views/vaccines/choose-vaccine.html index 9bbc9f23..ff35897e 100644 --- a/app/views/vaccines/choose-vaccine.html +++ b/app/views/vaccines/choose-vaccine.html @@ -47,7 +47,7 @@ value: vaccine.name, text: (vaccine.name | capitaliseFirstLetter), hint: { - text: "Only select this for the London flu service that targets specific groups" + text: "Only select this for the London flu service that targets additional groups not covered by the national flu vaccination programme" } if vaccine.name == "flu (London service)", conditional: { html: conditionalHtml From 5a5742417396d7fdb13c6246d9f0da5cce85c2ad Mon Sep 17 00:00:00 2001 From: Anna-Sutton Date: Tue, 8 Sep 2026 15:17:20 +0100 Subject: [PATCH 6/6] Update hint text for London flu service vaccine --- app/views/record-vaccinations/vaccine.html | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/views/record-vaccinations/vaccine.html b/app/views/record-vaccinations/vaccine.html index 640e6d1f..57e6db74 100644 --- a/app/views/record-vaccinations/vaccine.html +++ b/app/views/record-vaccinations/vaccine.html @@ -94,7 +94,7 @@ value: vaccine.name, text: (vaccine.name | capitaliseFirstLetter), hint: { - text: "Only select this if you are giving the vaccine as part of the locally commissioned London flu service that targets specific groups" + text: "Only select this for the London flu service that targets additional groups not covered by the national flu vaccination programme" } if vaccine.name == "flu (London service)", conditional: { html: conditionalHtml