Skip to content

Commit cdc8e10

Browse files
Update content shown for follow-up consent request
1 parent db7037e commit cdc8e10

2 files changed

Lines changed: 14 additions & 2 deletions

File tree

app/locales/en.js

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1683,7 +1683,13 @@ export const en = {
16831683
caption: 'Consent response from {{reply.fullName}}',
16841684
title: 'Follow up refusal',
16851685
decision: {
1686-
label: 'Does their original decision still stand?'
1686+
label: 'Has their decision changed after follow-up?',
1687+
consent: {
1688+
label: 'Yes – they now consent to the vaccination'
1689+
},
1690+
refuse: {
1691+
label: 'No – they still refuse the vaccination'
1692+
}
16871693
}
16881694
},
16891695
invalidate: {

app/views/reply/form/follow-up.njk

Lines changed: 7 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,13 @@
4040
text: __("reply.follow-up.decision.label")
4141
}
4242
},
43-
items: getBooleanItems(),
43+
items: [{
44+
text: __("reply.follow-up.decision.consent.label"),
45+
value: false
46+
}, {
47+
text: __("reply.follow-up.decision.refuse.label"),
48+
value: true
49+
}],
4450
decorate: "decision"
4551
}) }}
4652
{% endblock %}

0 commit comments

Comments
 (0)