File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change @@ -1472,6 +1472,9 @@ export const en = {
14721472 dose : {
14731473 label : 'Dose' ,
14741474 number : 'Dose {sequence}'
1475+ } ,
1476+ ignored : {
1477+ label : 'Ignored'
14751478 }
14761479 } ,
14771480 status : {
Original file line number Diff line number Diff line change 1313
1414 {% set rows = [] %}
1515
16+ {% for ignored in summary .ignoredDoses %}
17+ {% set ignoredLabelHtml %}
18+ <span >
19+ {{- tag ({
20+ text : __ (" patientProgramme.vaccinationRecord.ignored.label" ),
21+ classes : " nhsuk-tag--grey"
22+ }) -}}
23+ <br >
24+ <span class =" nhsuk-u-secondary-text-colour nhsuk-u-font-size-16" >{{ ignored .reason }} </span >
25+ </span >
26+ {% endset %}
27+ {% set rows = rows | push ([
28+ {
29+ header : __ (" patientProgramme.vaccinationRecord.dose.label" ),
30+ html : ignoredLabelHtml
31+ },
32+ {
33+ header : __ (" vaccination.createdAt.label" ),
34+ text : ignored .vaccination .formatted .createdAt_date
35+ }
36+ ]) %}
37+ {% endfor %}
38+
1639 {% for valid in summary .validDoses %}
1740 {% set rows = rows | push ([
1841 {
You can’t perform that action at this time.
0 commit comments