diff --git a/app/views/batches/participant-breakdown/special-requirements.html b/app/views/batches/participant-breakdown/special-requirements.html
new file mode 100644
index 0000000..c980957
--- /dev/null
+++ b/app/views/batches/participant-breakdown/special-requirements.html
@@ -0,0 +1,103 @@
+
+{% extends 'layout.html' %}
+
+
+{% set pageName = "West Berks mobile screening unit name" %}
+
+{% from "_includes/primary-navigation.html" import primaryNavigation %}
+{% block header %}
+ {{ primaryNavigation("Manage batches", serviceName) }}
+{% endblock %}
+
+{% block beforeContent %}
+{{ breadcrumb({
+ items: [
+ {
+ href: "#",
+ text: "Home"
+ },
+ {
+ href: "/batches/",
+ text: "Manage batches"
+ },
+ {
+ href: "/batches/batch-detail-in-progress",
+ text: "Malton Practices Apr-May 26 NTDD RD 13"
+ }
+ ]
+}) }}
+{% endblock %}
+
+{% block content %}
+
+ Malton Practices Apr-May 26 NTDD RD 13
+ Participants with special requirements
+
+
+
+
+
+ {{ tag({
+ text: "0 of 10 appointed",
+ classes: "nhsuk-tag--orange"
+ }) }}
+
+
+
+
+
+
+
+ {% set select %}
+
+
+
+
+ {% endset %}
+
+ {{ table({
+ firstCellIsHeader: false,
+ classes: "nhsuk-u-font-size-14",
+ head: [
+ {
+ text: "Name"
+ },
+ {
+ text: "Date of birth"
+ },
+ {
+ text: "NHS number"
+ },
+ {
+ text: "Next test due date"
+ },
+ {
+ text: "Requirement"
+ }
+ ],
+ rows: [
+ [
+ {
+ html: '
Olga Tokarczuk'
+ },
+ {
+ html: "1 January 1967
(00 years old)"
+ },
+ {
+ text: "943 579 7881"
+ },
+ {
+ text: "1 May 2026"
+ },
+ {
+ text: "Sanitise these"
+ }
+ ]
+ ]
+ }) }}
+
+
+
+{% endblock %}
diff --git a/app/views/batches/participant-breakdown/standard.html b/app/views/batches/participant-breakdown/standard.html
new file mode 100644
index 0000000..4738867
--- /dev/null
+++ b/app/views/batches/participant-breakdown/standard.html
@@ -0,0 +1,93 @@
+
+{% extends 'layout.html' %}
+
+
+{% set pageName = "West Berks mobile screening unit name" %}
+
+{% from "_includes/primary-navigation.html" import primaryNavigation %}
+{% block header %}
+ {{ primaryNavigation("Manage batches", serviceName) }}
+{% endblock %}
+
+{% block beforeContent %}
+{{ breadcrumb({
+ items: [
+ {
+ href: "#",
+ text: "Home"
+ },
+ {
+ href: "/batches/",
+ text: "Manage batches"
+ },
+ {
+ href: "/batches/batch-detail-in-progress",
+ text: "Malton Practices Apr-May 26 NTDD RD 13"
+ }
+ ]
+}) }}
+{% endblock %}
+
+{% block content %}
+
+ Malton Practices Apr-May 26 NTDD RD 13
+ Standard participants
+
+
+
+
+
+ {{ tag({
+ text: "700 of 700 appointed",
+ classes: "nhsuk-tag--green"
+ }) }}
+
+
+ View all participants
+
+
+
+
+
+
+
+ {{ tag({
+ text: "350 of 700 appointed",
+ classes: "nhsuk-tag--green"
+ }) }}
+
+
+ {{ button({
+ text: "Appoint participants",
+ href: "#",
+ classes: ""
+ }) }}
+
+
+ View all participants
+
+
+
+
+
+
+
+ {{ tag({
+ text: "0 of 700 appointed",
+ classes: "nhsuk-tag--green"
+ }) }}
+
+
+ {{ button({
+ text: "Appoint participants",
+ href: "#",
+ classes: ""
+ }) }}
+
+
+ View all participants
+
+
+
+
+{% endblock %}