Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
8 changes: 4 additions & 4 deletions app/views/record-vaccinations/dose.html
Original file line number Diff line number Diff line change
Expand Up @@ -83,9 +83,9 @@
}), items) %}

{% set items = (items.push({
text: "Not relevant",
value: "Not relevant",
checked: (data.vaccineDose == "Not relevant")
text: "Not sure",
value: "Not sure",
checked: (data.vaccineDose == "Not sure")
}), items) %}

{{ radios({
Expand All @@ -96,7 +96,7 @@
} if (errors | length) > 0,
fieldset: {
legend: {
text: "Which dose of " + data.vaccine + " are you giving?",
text: "Which dose of " + data.vaccine + " vaccine are you giving?",
classes: "nhsuk-fieldset__legend--l",
isPageHeading: true
}
Expand Down
10 changes: 8 additions & 2 deletions app/views/record-vaccinations/eligibility.html
Original file line number Diff line number Diff line change
Expand Up @@ -84,6 +84,11 @@
"Age-based eligibility 0 to 5 years"
] %}

{% set MMRVEligibilityOptions = [
"In a clinical risk group",
"Age-based eligibility 0 to 5 years"
] %}

{% block content %}

<div class="nhsuk-grid-row">
Expand Down Expand Up @@ -120,6 +125,8 @@
{% set eligibilityOptions = shinglesEligibilityOptions %}
{% elif data.vaccine == "6-in-1" %}
{% set eligibilityOptions = 6in1EligibilityOptions %}
{% elif data.vaccine == "MMRV" %}
{% set eligibilityOptions = MMRVEligibilityOptions %}
{% else %}
{% set eligibilityOptions = [] %}
{% endif %}
Expand Down Expand Up @@ -157,5 +164,4 @@
</div>
</div>

{% endblock %}

{% endblock %}