Skip to content
Draft
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
3 changes: 3 additions & 0 deletions app/views/record-vaccinations/vaccine.html
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
20 changes: 12 additions & 8 deletions app/views/vaccines/choose-vaccine.html
Original file line number Diff line number Diff line change
Expand Up @@ -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",
Expand Down