diff --git a/app/views/record-vaccinations/covid-19/no-gp-surgery.html b/app/views/record-vaccinations/covid-19/no-gp-surgery.html
new file mode 100644
index 00000000..bf61ef55
--- /dev/null
+++ b/app/views/record-vaccinations/covid-19/no-gp-surgery.html
@@ -0,0 +1,48 @@
+
+{% extends 'layout.html' %}
+
+{% set pageName = "Patient has no GP surgery" %}
+
+{% set currentSection = "vaccinate" %}
+
+{% block beforeContent %}
+ {{ backLink({ href: "/record-vaccinations/patient-history" }) }}
+{% endblock %}
+
+{% block content %}
+
+
+
+ {% if data.firstName and data.lastName %}
+ {% set displayName = data.firstName ~ ' ' ~ data.lastName %}
+ {% else %}
+ {% set displayName = 'Patient Name' %}
+ {% endif %}
+
+ {% if data.locationType %}
+ {% set locationType = data.locationType %}
+ {% else %}
+ {% set locationType = '[Location Type]' %}
+ {% endif %}
+
+ {% set panelHtml %}
+
This patient does not have a registered GP surgery.
+
Your organisation may not be paid for this vaccination.
+
+ {{ button({
+ "text": "Continue anyway",
+ "href": "/record-vaccinations/consent",
+ "classes": "nhsuk-button--reverse"
+ }) }}
+ {% endset %}
+
+ {{ panel({
+ titleText: displayName + " has no GP surgery",
+ html: panelHtml,
+ classes: "nhsuk-panel--interruption"
+ }) }}
+
+
+
+{% endblock %}
+
diff --git a/app/views/record-vaccinations/covid-19/not-in-pcn-warning.html b/app/views/record-vaccinations/covid-19/not-in-pcn-warning.html
new file mode 100644
index 00000000..d87c00a9
--- /dev/null
+++ b/app/views/record-vaccinations/covid-19/not-in-pcn-warning.html
@@ -0,0 +1,49 @@
+
+{% extends 'layout.html' %}
+
+{% set pageName = "Patient not in PCN" %}
+
+{% set currentSection = "vaccinate" %}
+
+{% block beforeContent %}
+ {{ backLink({ href: "/record-vaccinations/patient-history" }) }}
+{% endblock %}
+
+{% block content %}
+
+
+
+
+ {% if data.firstName and data.lastName %}
+ {% set displayName = data.firstName ~ ' ' ~ data.lastName %}
+ {% else %}
+ {% set displayName = 'Patient Name' %}
+ {% endif %}
+
+ {% if data.locationType %}
+ {% set locationType = data.locationType %}
+ {% else %}
+ {% set locationType = '[Location Type]' %}
+ {% endif %}
+
+ {% set panelHtml %}
+
This patient's GP surgery is not part of your PCN.
+
Your organisation may not be paid for this vaccination.
+
+ {{ button({
+ "text": "Continue anyway",
+ "href": "/record-vaccinations/consent",
+ "classes": "nhsuk-button--reverse"
+ }) }}
+ {% endset %}
+
+ {{ panel({
+ titleText: displayName + " is not in your PCN",
+ html: panelHtml,
+ classes: "nhsuk-panel--interruption"
+ }) }}
+
+
+
+{% endblock %}
+
diff --git a/app/views/record-vaccinations/patient-history-no-gp.html b/app/views/record-vaccinations/patient-history-no-gp.html
new file mode 100644
index 00000000..62c4c550
--- /dev/null
+++ b/app/views/record-vaccinations/patient-history-no-gp.html
@@ -0,0 +1,265 @@
+{% extends 'layout.html' %}
+
+{% set pageName = "Check the patient's details" %}
+
+{% set currentSection = "vaccinate" %}
+
+{% set dateOfBirthHtml %}
+ {% if data.dateOfBirth.day %}
+ {{ (data.dateOfBirth | isoDateFromDateInput | govukDate) }}
+
+
+
+
Check {{ data.firstName }} {{ data.lastName }}’s details and vaccination history
+
+ {{ warningCallout({
+ heading: "No GP surgery",
+ text: "This patient does not have a registered GP surgery."
+ }) }}
+
+ {{ 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: "NHS number"
+ },
+ value: {
+ text: data.nhsNumber
+ }
+ }
+ ]
+ }) }}
+
+
Vaccination history
+
+
+{% set insetTextHtml %}
+
This shows NHS vaccinations given in England. It includes all vaccinations recorded in RAVS but only some recorded in other systems.
+
+{% endset %}
+
+{{ insetText({
+ html: insetTextHtml,
+ classes: "nhsuk-u-padding-top-2 nhsuk-u-padding-bottom-2 nhsuk-u-margin-top-2 nhsuk-u-margin-bottom-4"
+}) }}
+
+
+
+
+
+
+ {{ table({
+ panel: false,
+ caption: "",
+ firstCellIsHeader: false,
+ head: [
+ {
+ text: "Date"
+ },
+ {
+ text: "Vaccine"
+ },
+ {
+ text: "Product"
+ }
+ ],
+ rows: [
+ [
+ {
+ text: "15 April 2025"
+ },
+ {
+ text: "COVID-19"
+ },
+ {
+ text: "Spikevax JN.1"
+ }
+ ],[
+ {
+ text: "9 November 2024"
+ },
+ {
+ text: "MMR (2nd dose)"
+ },
+ {
+ text: "Priorix"
+ }
+ ],[
+ {
+ text: "11 November 2024"
+ },
+ {
+ text: "RSV"
+ },
+ {
+ text: "Abrysvo"
+ }
+ ],
+ [
+ {
+ text: "29 October 2024"
+ },
+ {
+ text: "Pneumococcal"
+ },
+ {
+ text: "Pneumovax"
+ }
+ ],
+ [
+ {
+ text: "25 October 2024"
+ },
+ {
+ text: "Flu (1st dose)"
+ },
+ {
+ text: "Adjuvanted Quadrivalent Influenza Vaccine (aQIV)"
+ }
+ ],
+ [
+ {
+ text: "15 October 2023"
+ },
+ {
+ text: "COVID-19"
+ },
+ {
+ text: "Comirnaty 30 Omicron XBB.1.5"
+ }
+ ],
+ [
+ {
+ text: "10 October 2023"
+ },
+ {
+ text: "Flu"
+ },
+ {
+ text: "Not known",
+ classes: "nhsuk-u-secondary-text-color"
+ }
+ ],
+ [
+ {
+ text: "7 October 2023"
+ },
+ {
+ text: "Pertussis"
+ },
+ {
+ text: "Boostrix-IPV suspension"
+ }
+ ],
+ [
+ {
+ text: "11 March 2022"
+ },
+ {
+ text: "COVID-19"
+ },
+ {
+ text: "Moderna mRNA (Spikevax) Original"
+ }
+ ],
+ [
+ {
+ text: "4 December 2023"
+ },
+ {
+ text: "MMR"
+ },
+ {
+ text: "Priorix"
+ }
+ ]
+ ]
+ }) }}
+
+ {{ pagination({
+ next: {
+ href: "#"
+ },
+ items: [
+ {
+ href: "#",
+ number: 1,
+ current: true
+ },
+ {
+ href: "#",
+ number: 2
+ },
+ {
+ href: "#",
+ number: 3
+ }
+ ]
+ }) }}
+
+
+
+
+
+
+
+{% endblock %}
+
diff --git a/app/views/record-vaccinations/patient-history-none.html b/app/views/record-vaccinations/patient-history-none.html
index 1955fde8..d6b5b3db 100644
--- a/app/views/record-vaccinations/patient-history-none.html
+++ b/app/views/record-vaccinations/patient-history-none.html
@@ -27,6 +27,14 @@
This patient does not have a registered GP surgery.
+ We could not get any vaccination history for this patient.
+ "
+ }) }}
+
{{ summaryList({
classes: 'xnhsuk-summary-list--no-border',
rows: [
@@ -46,14 +54,6 @@