diff --git a/app/assets/sass/components/_day-listing.scss b/app/assets/sass/components/_day-listing.scss deleted file mode 100644 index 66d8a22..0000000 --- a/app/assets/sass/components/_day-listing.scss +++ /dev/null @@ -1,34 +0,0 @@ -.app-slot-listing { - border: 1px solid #aeb7bd; - background-color: #fff; - padding: 10px; - margin-bottom: 10px; - &.--hold { - background-color: #f0f4f5; - border-style: dashed; - } - &.--merged-start { - border-bottom: 1px dashed #aeb7bd; - margin-bottom: 0 !important; - } - &.--merged-mid { - border-top: 0; - border-bottom: 1px dashed #aeb7bd; - margin-bottom: 0 !important; - min-height: 16px; - } - &.--merged-end { - border-top: 0; - min-height: 16px; - } -} - -.app-slot-row { - display: flex; - flex-wrap: nowrap; - gap: 3rem; - align-items: top; -} -.app-slot-row-controls { - margin-left: auto; -} \ No newline at end of file diff --git a/app/assets/sass/components/_participant-table.scss b/app/assets/sass/components/_participant-table.scss index 780e867..6e31d73 100644 --- a/app/assets/sass/components/_participant-table.scss +++ b/app/assets/sass/components/_participant-table.scss @@ -1,17 +1,45 @@ +// Import NHS.UK frontend library +@use "nhsuk-frontend/dist/nhsuk/core" as *; + .app-participant-table { - .nhsuk-table__body { - tr:nth-child(odd) { - background-color: rgba(224,228,230,.5); - } - tr:nth-child(even) { - background-color: transparent; - } + tbody td { + height: 116px; + } + tbody tr.--double td { + height: 232px; + background-image: + repeating-linear-gradient(to right, nhsuk-colour("grey-4"), nhsuk-colour("grey-4") 6px, transparent 6px, transparent 12px); + background-position: 0 116px; + background-size: 100% 1px; + background-repeat: repeat-x; + } + tbody tr.--triple td { + height: 348px; + background-image: + repeating-linear-gradient(to right, nhsuk-colour("grey-4"), nhsuk-colour("grey-4") 6px, transparent 6px, transparent 12px), + repeating-linear-gradient(to right, nhsuk-colour("grey-4"), nhsuk-colour("grey-4") 6px, transparent 6px, transparent 12px); + background-position: 0 116px, 0 232px; + background-size: 100% 1px; + background-repeat: repeat-x; + } + + tbody tr:nth-child(odd) { + background-color: rgba(224,228,230,.5); + } + tbody tr:nth-child(even) { + background-color: transparent; + } + // tbody tr.app-container-available { + // background: nhsuk-colour("white"); + // } + tbody tr.app-container-staff-break { + background: repeating-linear-gradient(130deg, nhsuk-colour("grey-4"), nhsuk-colour("grey-4") 1px, transparent 1px, transparent 12px); } th:first-child, td:first-child { - //padding-left: 6px; + padding-left: 6px; } td:has( > .nhsuk-checkboxes__item) { @@ -20,12 +48,5 @@ width: 62px; } - .app-column-time { - width: 5rem; - } - .app-column-nhs-number { - text-align: right; - width: 10rem; - } +} -} \ No newline at end of file diff --git a/app/assets/sass/components/_progress-bar.scss b/app/assets/sass/components/_progress-bar.scss new file mode 100644 index 0000000..6223362 --- /dev/null +++ b/app/assets/sass/components/_progress-bar.scss @@ -0,0 +1,81 @@ +@use "nhsuk-frontend/dist/nhsuk/core" as *; + +:root { + --generic-chart-hatch: repeating-linear-gradient(130deg, #005eb8, #005eb8 1px, #ccdff1 1px, #ccdff1 12px); + --standard-chart-hatch: repeating-linear-gradient(130deg, #004c23, #004c23 1px, #cce5d8 1px, #cce5d8 12px); + --special-chart-hatch: repeating-linear-gradient(130deg, #4d3708, #4d3708 1px, #ffdc8e 1px, #ffdc8e 12px); + --ceased-chart-hatch: repeating-linear-gradient(130deg, #354550, #354550 1px, #dbe0e3 1px, #dbe0e3 12px); + --vhr-chart-hatch: repeating-linear-gradient(130deg, #6b140e, #6b140e 1px, #f7d4d1 1px, #f7d4d1 12px); + + --vhr-chart-hatch-1: repeating-linear-gradient(-45deg, #6b140e, #6b140e 1px, transparent 1px, transparent 12px); + --vhr-chart-hatch-2: repeating-linear-gradient(45deg, #6b140e, #6b140e 1px, #f7d4d1 1px, #f7d4d1 12px); +} + +.app-simple-progress-bar { + width: 100%; + min-width: nhsuk-px-to-rem(200px); + outline: 1px solid $nhsuk-input-border-colour; + + &.--thin { + min-height: 19px; + } + + &.--generic { + background: var(--generic-chart-hatch) 0 0 / var(--percentage) 100% no-repeat,#fff; + } + + &.--standard { + background: var(--standard-chart-hatch) 0 0 / var(--percentage) 100% no-repeat,#fff; + } + &.--special { + background: var(--special-chart-hatch) 0 0 / var(--percentage) 100% no-repeat,#fff; + } + &.--ceased { + background: var(--ceased-chart-hatch) 0 0 / var(--percentage) 100% no-repeat,#fff; + } + &.--vhr { + background: var(--vhr-chart-hatch-1) 0 0 / var(--percentage) 100% no-repeat, var(--vhr-chart-hatch-2) 0 0 / var(--percentage) 100% no-repeat,#fff; + } +} + + +.app-progress-bar { + width: 100%; + min-width: nhsuk-px-to-rem(200px); + border: 1px solid $nhsuk-input-border-colour;; + background: #fff; + box-sizing: border-box; + appearance: none; + -webkit-appearance: none; +} +.app-progress-bar::-webkit-progress-bar { + background: #fff; +} +.app-progress-bar::-moz-progress-bar { + background: transparent; +} + +.app-progress-bar.--generic::-webkit-progress-value, +.app-progress-bar.--generic::-moz-progress-bar { + background: var(--generic-chart-hatch); +} + +.app-progress-bar.--standard::-webkit-progress-value, +.app-progress-bar.--standard::-moz-progress-bar { + background: var(--standard-chart-hatch); +} + +.app-progress-bar.--special::-webkit-progress-value, +.app-progress-bar.--special::-moz-progress-bar { + background: var(--special-chart-hatch); +} + +.app-progress-bar.--ceased::-webkit-progress-value, +.app-progress-bar.--ceased::-moz-progress-bar { + background: var(--ceased-chart-hatch); +} + +.app-progress-bar.--vhr::-webkit-progress-value, +.app-progress-bar.--vhr::-moz-progress-bar { + background: var(--vhr-chart-hatch); +} \ No newline at end of file diff --git a/app/assets/sass/main.scss b/app/assets/sass/main.scss index b511c44..0f1a2eb 100755 --- a/app/assets/sass/main.scss +++ b/app/assets/sass/main.scss @@ -9,11 +9,11 @@ // https://github.com/NHSDigital/manage-breast-screening-prototype @forward "components/calendar-table"; -@forward "components/day-listing"; @forward "components/inline-detailed-search"; @forward "components/secondary-navigation"; @forward "components/participant-table"; //@forward "components/participant-search"; +@forward "components/progress-bar"; @forward "components/workflow"; //{% set containerClasses = "nhsuk-width-container-fluid" %} @@ -30,15 +30,6 @@ // Batch (for now) view bar charts and legends -:root { - --generic-chart-hatch: repeating-linear-gradient(45deg, #005eb8, #005eb8 1px, #ccdff1 1px, #ccdff1 12px); - --standard-chart-hatch: repeating-linear-gradient(45deg, #004c23, #004c23 1px, #cce5d8 1px, #cce5d8 12px); - --special-chart-hatch: repeating-linear-gradient(-45deg, #4d3708, #4d3708 1px, #ffdc8e 1px, #ffdc8e 12px); - --ceased-chart-hatch: repeating-linear-gradient(90deg, #354550, #354550 1px, #dbe0e3 1px, #dbe0e3 12px); - --vhr-chart-hatch-1: repeating-linear-gradient(-45deg, #6b140e, #6b140e 1px, transparent 1px, transparent 12px); - --vhr-chart-hatch-2: repeating-linear-gradient(45deg, #6b140e, #6b140e 1px, #f7d4d1 1px, #f7d4d1 12px); -} - .hatching--standard { background: var(--standard-chart-hatch) } @@ -124,30 +115,3 @@ align-items: center; width: 100%; } - -.app-simple-progress-bar { - width: 100%; - min-width: 200px; - outline: 1px solid #aeb7bd; - - &.--thin { - min-height: 19px; - } - - &.--generic { - background: var(--generic-chart-hatch) 0 0 / var(--percentage) 100% no-repeat,#fff; - } - - &.--standard { - background: var(--standard-chart-hatch) 0 0 / var(--percentage) 100% no-repeat,#fff; - } - &.--special { - background: var(--special-chart-hatch) 0 0 / var(--percentage) 100% no-repeat,#fff; - } - &.--ceased { - background: var(--ceased-chart-hatch) 0 0 / var(--percentage) 100% no-repeat,#fff; - } - &.--vhr { - background: var(--vhr-chart-hatch-1) 0 0 / var(--percentage) 100% no-repeat, var(--vhr-chart-hatch-2) 0 0 / var(--percentage) 100% no-repeat,#fff; - } -} diff --git a/app/views/_includes/clinics/clinic-listing-table.html b/app/views/_includes/clinics/clinic-listing-table.html index d2346b7..e2a4f24 100644 --- a/app/views/_includes/clinics/clinic-listing-table.html +++ b/app/views/_includes/clinics/clinic-listing-table.html @@ -26,7 +26,7 @@ html: 'Alpha van
HWO-mobile-1 ' }, { - html: '
10 slots available of 1360' + html: '99%10 slots available of 1360' } ], [ @@ -40,7 +40,7 @@ html: 'Home base
HWO-static-1 ' }, { - html: '
40 slots available of 100' + html: '60%40 slots available of 100' } ] ] diff --git a/app/views/batches/batch-detail-in-progress.html b/app/views/batches/batch-detail-in-progress.html index 7d8ca21..6526332 100644 --- a/app/views/batches/batch-detail-in-progress.html +++ b/app/views/batches/batch-detail-in-progress.html @@ -164,6 +164,12 @@

Batch progress

+ + {{ tag({ + text: "1306 of 1352 dealt with", + classes: "nhsuk-tag--blue" + }) }} +
{{ tag({ text: "1306 of 1352 dealt with", @@ -181,6 +187,12 @@

Appoint

+ + {{ tag({ + text: "1330 of 1330 appointed", + classes: "nhsuk-tag--green" + }) }} +
{{ tag({ text: "1330 of 1330 appointed", @@ -197,6 +209,12 @@

Appoint

+ + {{ tag({ + text: "6 of 12 appointed", + classes: "nhsuk-tag--yellow" + }) }} +
{{ tag({ text: "6 of 12 appointed", @@ -214,9 +232,15 @@

Reconci

-
+ + {{ tag({ + text: "2 of 5 reconciled", + classes: "nhsuk-tag--grey" + }) }} + +
{{ tag({ - text: "0 of 5 reconciled", + text: "2 of 5 reconciled", classes: "nhsuk-tag--grey" }) }}
@@ -230,9 +254,15 @@

Reconci

-
+ + {{ tag({ + text: "3 of 5 reconciled", + classes: "nhsuk-tag--red" + }) }} + +
{{ tag({ - text: "0 of 5 reconciled", + text: "3 of 5 reconciled", classes: "nhsuk-tag--red" }) }}
diff --git a/app/views/batches/batch-detail.html b/app/views/batches/batch-detail.html index eb42dfc..027d8e8 100644 --- a/app/views/batches/batch-detail.html +++ b/app/views/batches/batch-detail.html @@ -121,41 +121,6 @@

Participant breakdown

{% endcall %}
- -
@@ -164,6 +129,12 @@

Batch progress

+ + {{ tag({ + text: "0 of 2172 dealt with", + classes: "nhsuk-tag--blue" + }) }} +
{{ tag({ text: "0 of 2172 dealt with", @@ -181,6 +152,12 @@

Appoint

+ + {{ tag({ + text: "0 of 2150 appointed", + classes: "nhsuk-tag--green" + }) }} +
{{ tag({ text: "0 of 2150 appointed", @@ -197,6 +174,12 @@

Appoint

+ + {{ tag({ + text: "0 of 12 appointed", + classes: "nhsuk-tag--yellow" + }) }} +
{{ tag({ text: "0 of 12 appointed", @@ -214,6 +197,12 @@

Reconci

+ + {{ tag({ + text: "0 of 5 reconciled", + classes: "nhsuk-tag--grey" + }) }} +
{{ tag({ text: "0 of 5 reconciled", @@ -230,6 +219,12 @@

Reconci

+ + {{ tag({ + text: "0 of 5 reconciled", + classes: "nhsuk-tag--red" + }) }} +
{{ tag({ text: "0 of 5 reconciled", diff --git a/app/views/batches/index.html b/app/views/batches/index.html index 780dbef..f713869 100644 --- a/app/views/batches/index.html +++ b/app/views/batches/index.html @@ -41,7 +41,7 @@

Batches

HWO-standard-20251209 {% endset %} {% set batch_1_progress %} -
+ 0% 0 of 2172 appointed {% endset %} @@ -52,7 +52,7 @@

Batches

HWO-standard-20251212 {% endset %} {% set batch_2_progress %} -
+ 97% 1306 of 1352 appointed {% endset %} @@ -63,7 +63,7 @@

Batches

HWO-failsafe-20260115 {% endset %} {% set failsafe_progress %} -
+ 0% 0 of 308 appointed {% endset %} @@ -74,7 +74,7 @@

Batches

HWO-auto-slippage-2020203-1100 {% endset %} {% set auto_progress %} -
+ 0% 0 of 2 appointed {% endset %} @@ -85,7 +85,7 @@

Batches

HWO-auto-never-invited-2020203-1100 {% endset %} {% set auto_2_progress %} -
+ 0% 0 of 4 appointed {% endset %} diff --git a/app/views/clinics/day-slot-view.html b/app/views/clinics/day-slot-view.html deleted file mode 100644 index 0f923c9..0000000 --- a/app/views/clinics/day-slot-view.html +++ /dev/null @@ -1,510 +0,0 @@ -{% extends 'layout.html' %} - -{% set pageName = "Day clinic view" %} - -{% from "_includes/primary-navigation.html" import primaryNavigation %} -{% block header %} - {{ primaryNavigation("Clinics", serviceName) }} -{% endblock %} - -{% block beforeContent %} -{{ breadcrumb({ - items: [ - { - href: "#", - text: "Home" - }, - { - href: "/clinics/", - text: "Clinics" - }, - { - href: "clinic-detail", - text: "Worthing C2C test 1" - } - ] -}) }} -{% endblock %} - -{% block content %} - -
-
-

- HWO-NNN-standard-20260501 - Worthing C2C test 1 -

-
-
- -
- -
-
-

- Tuesday - 1 September 2026 -

-
-

Whole day size controls:

-
    -
  • Using session template X? Can I change the template?
  • -
  • Can I add slots now, eiter before or after the established ones?
  • -
  • Cancel the whole day
  • -
-
-

- [num] slots available of [total] -

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
- Time - - Participant details - - Date of birth - - Appointment details - - Actions -
- 08:30 - - Joanne Marquardt -
NHS: 999 054 3666
-
- 15 March 1960 -
(66 years)
-
- - Special appointment - -
View appointment or a tiny note
-
- Rebook participant - - Secondary actions -
08:40Held: why? - Release slot - - Secondary actions -
- 08:50 - +09:00 - - Daphne Hart -
NHS: 999 374 0952
-
- 22 July 1958 -
(67 years)
-
- - Special appointment x 2 - -
View appointment or a tiny note
-
- Rebook participant - - Secondary actions -
- 09:10 - - Marta O'Neill -
NHS: 999 195 4836
-
- 3 May 1971 -
(55 years)
-
- View appointment or a tiny note - - Rebook participant - - Secondary actions -
09:10999 287 9305Susan Carter19 September 1967
09:20999 463 1129Olivia Barnes12 January 1975
09:30999 774 2201Rachel Price27 April 1962
09:40999 546 8870Hannah Wallace6 October 1959
09:50999 559 3322Fiona Lambert14 December 1973
10:00999 804 7753Georgia Mills30 June 1968
10:10999 290 4601Elaine Fox11 February 1976
10:20999 613 2084Tessa King25 August 1963
10:30999 118 9756Nadia Singh7 April 1957
10:40999 039 6617Jane Reed18 November 1970
10:50999 259 1148Laura White29 May 1965
11:00999 880 3320Marissa Young9 March 1961
11:10999 901 7732Naomi Bell21 September 1974
11:20999 216 5087Paige Long4 July 1969
11:30999 487 9901Catherine Wood16 January 1956
11:40999 603 1774Victoria Hale13 October 1966
11:50999 905 6423Imogen Frost31 December 1972
12:00999 332 1108Dara Moss24 June 1960
12:10999 427 5930Sophie Hartley2 August 1962
12:20999 218 3446Emma Cole17 April 1975
- - - -
-
-{% endblock %} diff --git a/app/views/index.html b/app/views/index.html index 91bc6f2..063a46a 100755 --- a/app/views/index.html +++ b/app/views/index.html @@ -50,6 +50,12 @@

August 2026

Create a new clinic +

Appointments and active clinics

+
    +
  1. + Single clinic session view (appointments) +
  2. +

July 2026

Sessions: first run

@@ -64,7 +70,6 @@

July 2026

Template listing -

May–June 2026

Clinics: first run

    @@ -74,9 +79,6 @@

    May–June 2026

  1. Clinic detail
  2. -
  3. - Single day slot view -

April 2026

diff --git a/app/views/sessions/day-slot-view.html b/app/views/sessions/day-slot-view.html new file mode 100644 index 0000000..13bf56d --- /dev/null +++ b/app/views/sessions/day-slot-view.html @@ -0,0 +1,1184 @@ +{% extends 'layout.html' %} + +{% set pageName = "Day clinic view" %} + +{% from "_includes/primary-navigation.html" import primaryNavigation %} +{% block header %} + {{ primaryNavigation("Clinics", serviceName) }} +{% endblock %} + +{% block beforeContent %} +{{ breadcrumb({ + items: [ + { + href: "#", + text: "Clinics" + }, + { + href: "#", + text: "Worthing C2C test 1" + }, + { + href: "#", + text: "Schedule name (and dates?)" + } + ] +}) }} +{% endblock %} + +{% block content %} + +
+
+

+ Clinic + Worthing C2C test 1 + Unit and location +

+
+
+ +
+
+

+ Schedule + Schedule name + from date to date +

+
+
+ +
+ +
+
+

+ Tuesday + 1 September 2026 + Based on [template name] session template +

+
    +
  • 00 slots available to book
  • +
  • 00 held slots
  • +
+
+ +
+ +
+
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ Time + + Participant + + Date of birth + + Appointment + + Actions +
+ 08:30 to 08:40 + + Joanne Marquardt +
NHS: 999 054 3666
+ + Special appointment + +
+ 15 March 1960 +
(66 years)
+
+ View appointment
+ Potential tiny note +
+ Rebook participant + + More actions +
+ 08:40 to 08:50 + + + Held + + Potential tiny note for a non-standard hold + + Release slot + + More actions +
+ 08:50 to 09:10 + + Daphne Hart +
NHS: 999 374 0952
+ + Special appointment 2 slots + +
+ 22 July 1958 +
(67 years)
+
+ View appointment
+ Potential tiny note +
+ Rebook participant + + More actions +
+ 09:10 to 09:20 + + Marta O'Neill +
NHS: 999 195 4836
+
+ 3 May 1971 +
(55 years)
+
+ View appointment
+ Potential tiny note +
+ Rebook participant + + More actions +
+ 09:20 to 09:30 + + Susan Carter +
NHS: 999 287 9305
+
+ 19 September 1967 +
(58 years)
+
+ View appointment
+ Potential tiny note +
+ Rebook participant + + More actions +
+ 09:30 to 09:40 + + Olivia Barnes +
NHS: 999 463 1129
+
+ 12 January 1975 +
(51 years)
+
+ View appointment
+ Potential tiny note +
+ Rebook participant + + More actions +
+ 09:40 to 09:50 + + Rachel Price +
NHS: 999 774 2201
+
+ 27 April 1962 +
(64 years)
+
+ View appointment
+ Potential tiny note +
+ Rebook participant + + More actions +
+ 09:50 to 10:00 + + Hannah Wallace +
NHS: 999 546 8870
+
+ 6 October 1959 +
(66 years)
+
+ View appointment
+ Potential tiny note +
+ Rebook participant + + More actions +
+ 10:00 to 10:10 + + Fiona Lambert +
NHS: 999 559 3322
+
+ 14 December 1973 +
(52 years)
+
+ View appointment
+ Potential tiny note +
+ Rebook participant + + More actions +
+ 10:10 to 10:20 + + Georgia Mills +
NHS: 999 804 7753
+
+ 30 June 1968 +
(58 years)
+
+ View appointment
+ Potential tiny note +
+ Rebook participant + + More actions +
+ 10:20 to 10:30 + + Alice Marie Gregory +
NHS: 999 582 7164
+
+ 8 November 1964 +
(61 years)
+
+ View appointment
+ Potential tiny note +
+ Rebook participant + + More actions +
+ 10:30 to 10:40 + + Elaine Fox +
NHS: 999 290 4601
+
+ 11 February 1976 +
(50 years)
+
+ View appointment
+ Potential tiny note +
+ Rebook participant + + More actions +
+ 10:40 to 10:50 + + Tessa King +
NHS: 999 613 2084
+
+ 25 August 1963 +
(62 years)
+
+ View appointment
+ Potential tiny note +
+ Rebook participant + + More actions +
+ 10:50 to 11:00 + + Nadia Singh +
NHS: 999 118 9756
+
+ 7 April 1957 +
(69 years)
+
+ View appointment
+ Potential tiny note +
+ Rebook participant + + More actions +
+ 11:00 to 11:10 + + Jane Reed +
NHS: 999 039 6617
+
+ 18 November 1970 +
(55 years)
+
+ View appointment
+ Potential tiny note +
+ Rebook participant + + More actions +
+ 11:10 to 11:20 + + Laura White +
NHS: 999 259 1148
+
+ 29 May 1965 +
(61 years)
+
+ View appointment
+ Potential tiny note +
+ Rebook participant + + More actions +
+ 11:20 to 11:30 + + Marissa Young +
NHS: 999 880 3320
+
+ 9 March 1961 +
(65 years)
+
+ View appointment
+ Potential tiny note +
+ Rebook participant + + More actions +
+ 11:30 to 11:40 + + Naomi Bell +
NHS: 999 901 7732
+
+ 21 September 1974 +
(51 years)
+
+ View appointment
+ Potential tiny note +
+ Rebook participant + + More actions +
+ 11:40 to 11:50 + + Paige Long +
NHS: 999 216 5087
+
+ 4 July 1969 +
(57 years)
+
+ View appointment
+ Potential tiny note +
+ Rebook participant + + More actions +
+ 11:50 to 12:00 + + Catherine Wood +
NHS: 999 487 9901
+
+ 16 January 1956 +
(70 years)
+
+ View appointment
+ Potential tiny note +
+ Rebook participant + + More actions +
+ 12:00 to 12:10 + + + Staff break + + + Release slot + + More actions +
+ 12:10 to 12:20 + + + Staff break + + + Release slot + + More actions +
+ 12:20 to 12:30 + + + Staff break + + + Release slot + + More actions +
+ 12:30 to 12:40 + + + Staff break + + + Release slot + + More actions +
+ 12:40 to 12:50 + + + Staff break + + + Release slot + + More actions +
+ 13:00 to 13:10 + + Victoria Hale +
NHS: 999 603 1774
+
+ 13 October 1966 +
(59 years)
+
+ View appointment
+ Potential tiny note +
+ Rebook participant + + More actions +
+ 13:10 to 13:20 + + Imogen Frost +
NHS: 999 905 6423
+
+ 31 December 1972 +
(53 years)
+
+ View appointment
+ Potential tiny note +
+ Rebook participant + + More actions +
+ 13:20 to 13:30 + + Dara Moss +
NHS: 999 332 1108
+
+ 24 June 1960 +
(66 years)
+
+ View appointment
+ Potential tiny note +
+ Rebook participant + + More actions +
+ 13:30 to 13:40 + + Sophie Hartley +
NHS: 999 427 5930
+
+ 2 August 1962 +
(64 years)
+
+ View appointment
+ Potential tiny note +
+ Rebook participant + + More actions +
+ 13:40 to 13:50 + + Emma Cole +
NHS: 999 218 3446
+
+ 17 April 1975 +
(51 years)
+
+ View appointment
+ Potential tiny note +
+ Rebook participant + + More actions +
+ 13:50 to 14:00 + + + Held + + Potential tiny note for a non-standard hold + + Release slot + + More actions +
+ 14:00 to 14:10 + + Mia Ford +
NHS: 999 678 2209
+
+ 19 May 1972 +
(54 years)
+
+ View appointment
+ Potential tiny note +
+ Rebook participant + + More actions +
+ 14:10 to 14:20 + + + Held + + Potential tiny note for a non-standard hold + + Release slot + + More actions +
+ 14:20 to 14:30 + + Ariana Miles +
NHS: 999 244 1196
+
+ 28 November 1959 +
(66 years)
+
+ View appointment
+ Potential tiny note +
+ Rebook participant + + More actions +
+ 14:30 to 14:40 + + Bethany Cross +
NHS: 999 883 4455
+
+ 7 July 1975 +
(51 years)
+
+ View appointment
+ Potential tiny note +
+ Rebook participant + + More actions +
+ 14:40 to 14:50 + + + Held + + Potential tiny note for a non-standard hold + + Release slot + + More actions +
+ 14:50 to 15:00 + + Helena Rowe +
NHS: 999 439 3321
+
+ 2 April 1963 +
(63 years)
+
+ View appointment
+ Potential tiny note +
+ Rebook participant + + More actions +
+ 15:00 to 15:10 + + Danielle Nash +
NHS: 999 210 5587
+
+ 23 June 1970 +
(56 years)
+
+ View appointment
+ Potential tiny note +
+ Rebook participant + + More actions +
+ 15:10 to 15:20 + + Faye Turner +
NHS: 999 619 4470
+
+ 8 January 1957 +
(69 years)
+
+ View appointment
+ Potential tiny note +
+ Rebook participant + + More actions +
+ 15:20 to 15:30 + + Leona Grant +
NHS: 999 908 2233
+
+ 15 October 1974 +
(51 years)
+
+ View appointment
+ Potential tiny note +
+ Rebook participant + + More actions +
+ 15:30 to 15:40 + + Nora Blake +
NHS: 999 776 9904
+
+ 30 December 1966 +
(59 years)
+
+ View appointment
+ Potential tiny note +
+ Rebook participant + + More actions +
+ 15:40 to 15:50 + + Olivia Lee +
NHS: 999 665 8805
+
+ 19 August 1960 +
(66 years)
+
+ View appointment
+ Potential tiny note +
+ Rebook participant + + More actions +
+ 15:50 to 16:00 + + Priya Desai +
NHS: 999 554 7706
+
+ 10 May 1973 +
(53 years)
+
+ View appointment
+ Potential tiny note +
+ Rebook participant + + More actions +
+ 16:00 to 16:10 + + Quinn Park +
NHS: 999 443 6607
+
+ 26 March 1964 +
(62 years)
+
+ View appointment
+ Potential tiny note +
+ Rebook participant + + More actions +
+ 16:10 to 16:20 + + Rosa Kirk +
NHS: 999 332 5508
+
+ 13 July 1958 +
(68 years)
+
+ View appointment
+ Potential tiny note +
+ Rebook participant + + More actions +
+ 16:20 to 16:30 + + + Available + + + Book appointment + + More actions +
+ 16:30 to 16:40 + + + Available + + + Book appointment + + More actions +
+ 16:40 to 16:50 + + + Available + + + Book appointment + + More actions +
+ 16:50 to 17:00 + + + Available + + + Book appointment + + More actions +
+ 17:00 to 17:30 + + + Available + + + Special appointment 3 slots + + + Book appointment + + More actions +
+ +
+
+{% endblock %}