+
+
Check {{ data.firstName }} {{ data.lastName }}’s details and vaccination history
+
+ {{ summaryList({
+ rows: [
+ {
+ key: {
+ text: "Name"
+ },
+ value: {
+ text: (data.firstName + " " + data.lastName)
+ }
+ },
+ {
+ key: {
+ text: "Date of birth"
+ },
+ value: {
+ html: dateOfBirthHtml
+ }
+ },
+ {
+ key: {
+ text: "Address"
+ },
+ value: {
+ html: "73 Roman Rd
Leeds
LS2 5ZN"
+ }
+ },
+ {
+ key: {
+ text: "Postcode"
+ },
+ value: {
+ text: "N7 0EA"
+ }
+ }
+ ]
+ }) }}
+
+ {% if data.vaccine == "COVID-19" %}
+
+ {% set screeningConsiderations %}
+
+ - Does the patient have a history of anaphylaxis or significant allergic reactions to any vaccines or their ingredients?
+ - Has the patient had a serious adverse reaction after the COVID-19 vaccine?
+ - Is the patient pregnant or could they be?
+
+ {% endset %}
+
+ {{ details({
+ summaryText: "Screening considerations",
+ html: screeningConsiderations
+ }) }}
+
+ {% endif %}
+
+ {% from "warning-callout/macro.njk" import warningCallout %}
+
+{{ warningCallout({
+ heading: "Important",
+ text: "We can only show previous vaccinations that were recorded in RAVS for this patient."
+}) }}
+
+
Vaccination history
+
+
This shows NHS vaccinations given in England. Currently it includes COVID-19, flu and RSV, plus some pertussis, pneumococcal and MMR vaccination records.
+
+