diff --git a/app/views/record-vaccinations/vaccine.html b/app/views/record-vaccinations/vaccine.html index df7366bb..57e6db74 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 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 } if vaccine.products diff --git a/app/views/vaccines/choose-vaccine.html b/app/views/vaccines/choose-vaccine.html index 1684bebd..ff35897e 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 additional groups not covered by the national flu vaccination programme" + } if vaccine.name == "flu (London service)", + conditional: { + html: conditionalHtml + } if vaccine.products + }), items) %} + {% endfor %} {{ radios({ "idPrefix": "vaccine",