diff --git a/app/views/record-vaccinations/dose.html b/app/views/record-vaccinations/dose.html index 227e3f6c..7142c825 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 %} @@ -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) %} @@ -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 %} diff --git a/app/views/record-vaccinations/eligibility.html b/app/views/record-vaccinations/eligibility.html index 67e90916..2405ddba 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" %} @@ -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 %} @@ -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 + " vaccine?" if data.vaccinationToday == 'yes' else "Why was the patient eligible for the " + data.vaccine + " vaccine?"), size: "l", isPageHeading: true } @@ -164,4 +164,4 @@ -{% endblock %} \ No newline at end of file +{% endblock %}