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
10 changes: 5 additions & 5 deletions app/views/record-vaccinations/dose.html
Original file line number Diff line number Diff line change
@@ -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) %}
Expand All @@ -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 %}
Expand Down Expand Up @@ -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) %}
Expand All @@ -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
}
Expand All @@ -113,4 +113,4 @@

</div>

{% endblock %}
{% endblock %}
14 changes: 7 additions & 7 deletions app/views/record-vaccinations/eligibility.html
Original file line number Diff line number Diff line change
@@ -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" %}

Expand Down Expand Up @@ -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 %}
Expand Down Expand Up @@ -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
}
Expand All @@ -164,4 +164,4 @@
</div>
</div>

{% endblock %}
{% endblock %}