From ddaf51d2fda523264846f03fe993ff2683f513c0 Mon Sep 17 00:00:00 2001 From: Mat Johnson Date: Thu, 25 Jun 2026 14:44:50 +0100 Subject: [PATCH 1/9] search and results but after a git add lol --- .../_includes/participant-search.html | 8 ++------ .../search-and-results.html | 11 +++++++---- 2 files changed, 9 insertions(+), 10 deletions(-) diff --git a/app/views/z-september-transactional-journey/_includes/participant-search.html b/app/views/z-september-transactional-journey/_includes/participant-search.html index 0ba1965..a6bf20f 100644 --- a/app/views/z-september-transactional-journey/_includes/participant-search.html +++ b/app/views/z-september-transactional-journey/_includes/participant-search.html @@ -64,9 +64,7 @@

-
-

Error states

@@ -102,14 +100,12 @@

- +

Find participants in Test batch 1

- Use one or more fields - Error: Use one or more fields @@ -176,4 +172,4 @@

-
\ No newline at end of file +
\ No newline at end of file diff --git a/app/views/z-september-transactional-journey/search-and-results.html b/app/views/z-september-transactional-journey/search-and-results.html index a2dc512..b7304d3 100644 --- a/app/views/z-september-transactional-journey/search-and-results.html +++ b/app/views/z-september-transactional-journey/search-and-results.html @@ -17,7 +17,10 @@
-

4 participants found

+

+ Search results +

+

4 participants found

@@ -97,12 +100,12 @@

4 participants found

- + From 73359a1a9b9a8efee60cfb1dfab2b09188d9983b Mon Sep 17 00:00:00 2001 From: Mat Johnson Date: Thu, 25 Jun 2026 16:07:40 +0100 Subject: [PATCH 2/9] Tweaks to group views --- .../sass/components/_participant-table.scss | 18 ++++++------- .../group.html | 25 ++++++++++++++++--- 2 files changed, 28 insertions(+), 15 deletions(-) diff --git a/app/assets/sass/components/_participant-table.scss b/app/assets/sass/components/_participant-table.scss index fb7f1a4..9080899 100644 --- a/app/assets/sass/components/_participant-table.scss +++ b/app/assets/sass/components/_participant-table.scss @@ -1,16 +1,12 @@ .app-participant-table { - /*thead tr { - position: sticky; - top: 0; - background-color: #f0f4f5; - }*/ - - tbody tr:nth-child(odd) { - background-color: #f8fafa; - } - tbody tr:nth-child(even) { - background-color: #f0f4f5; + .nhsuk-table__body { + tr:nth-child(odd) { + background-color: #f8fafa; + } + tr:nth-child(even) { + background-color: #f0f4f5; + } } th:first-child, diff --git a/app/views/z-september-transactional-journey/group.html b/app/views/z-september-transactional-journey/group.html index 616429e..fa7222e 100644 --- a/app/views/z-september-transactional-journey/group.html +++ b/app/views/z-september-transactional-journey/group.html @@ -15,7 +15,7 @@
{% set html %}

- Participant[s] successfully added to group + 1 participant added to group

{% endset %} {{ notificationBanner({ @@ -25,12 +25,24 @@ {% set html %}

- Participant removed from group + Billie Joanne Marquardt removed from group

Undo {% endset %} {{ notificationBanner({ - html: html + html: html, + titleText: "Participant removed" + }) }} + + {% set html %} +

+ Billie Joanne Marquardt returned to group +

+ {% endset %} + {{ notificationBanner({ + html: html, + titleText: "Participant reinstated", + type: "success" }) }}
@@ -71,7 +83,12 @@

Test clinic group

- + From 73f83c25a1cfc39d77e2f5820878925e9836e308 Mon Sep 17 00:00:00 2001 From: Mat Johnson Date: Thu, 25 Jun 2026 16:37:24 +0100 Subject: [PATCH 3/9] Error around a table --- .../_includes/participant-search.html | 6 ++++++ .../search-and-results.html | 11 ++++++++++- 2 files changed, 16 insertions(+), 1 deletion(-) diff --git a/app/views/z-september-transactional-journey/_includes/participant-search.html b/app/views/z-september-transactional-journey/_includes/participant-search.html index a6bf20f..344f053 100644 --- a/app/views/z-september-transactional-journey/_includes/participant-search.html +++ b/app/views/z-september-transactional-journey/_includes/participant-search.html @@ -83,6 +83,9 @@

Missing date element (day, month or year). Non-numeric entry on dates. DOB mnust be in the past. Anything else?

+

+ Select one or more participants +

diff --git a/app/views/z-september-transactional-journey/search-and-results.html b/app/views/z-september-transactional-journey/search-and-results.html index b7304d3..53478a1 100644 --- a/app/views/z-september-transactional-journey/search-and-results.html +++ b/app/views/z-september-transactional-journey/search-and-results.html @@ -20,9 +20,16 @@

Search results

+ +
+

4 participants found

-
999 054 3666Billie Joanne Marquardt + Billie Joanne Marquardt + + Just added + + 15 March 1960 Remove
+ + Error: Select one or more participants + + +
@@ -93,6 +100,8 @@

4 participants found

+
+ Add selected to Test clinic group From c403f4c18037758e1f8798902e913e3284e2bb63 Mon Sep 17 00:00:00 2001 From: Mat Johnson Date: Fri, 26 Jun 2026 12:23:51 +0100 Subject: [PATCH 4/9] Tweaks and more tweaks. Revisited confirmation page --- .../_includes/participant-search.html | 78 ++++----- .../batch-detail.html | 2 +- .../group.html | 9 +- .../pre-appoint-confirm.html | 137 ++++------------ .../search-and-results.html | 11 +- .../z-pre-appoint-confirm-v1.html | 151 ++++++++++++++++++ 6 files changed, 234 insertions(+), 154 deletions(-) create mode 100644 app/views/z-september-transactional-journey/z-pre-appoint-confirm-v1.html diff --git a/app/views/z-september-transactional-journey/_includes/participant-search.html b/app/views/z-september-transactional-journey/_includes/participant-search.html index 344f053..32a92eb 100644 --- a/app/views/z-september-transactional-journey/_includes/participant-search.html +++ b/app/views/z-september-transactional-journey/_includes/participant-search.html @@ -2,7 +2,7 @@

- Find participants in Test batch 1 + Find participants

Use one or more fields
@@ -66,51 +66,51 @@

-
-
-
-
-

- There is a problem -

-
-

- Is an empty submission an error or a "no results" return? -

-

- Bad formatting on NHS number. Non-numeric entry on NHS number. Anything else? -

-

- Missing date element (day, month or year). Non-numeric entry on dates. DOB mnust be in the past. Anything else? -

-

- Select one or more participants -

- -
+
+
+
+
+

+ There is a problem +

+
+

+ Is an empty submission an error or a "no results" return? +

+

+ Bad formatting on NHS number. Non-numeric entry on NHS number. Anything else? +

+

+ Missing date element (day, month or year). Non-numeric entry on dates. DOB mnust be in the past. Anything else? +

+

+ Select one or more participants +

+
+
- +

- Find participants in Test batch 1 + Find participants

Error: Use one or more fields @@ -178,4 +178,4 @@

-
\ No newline at end of file +
\ No newline at end of file diff --git a/app/views/z-september-transactional-journey/batch-detail.html b/app/views/z-september-transactional-journey/batch-detail.html index 95d0d67..b022529 100644 --- a/app/views/z-september-transactional-journey/batch-detail.html +++ b/app/views/z-september-transactional-journey/batch-detail.html @@ -50,7 +50,7 @@

diff --git a/app/views/z-september-transactional-journey/group.html b/app/views/z-september-transactional-journey/group.html index fa7222e..0a0d8f2 100644 --- a/app/views/z-september-transactional-journey/group.html +++ b/app/views/z-september-transactional-journey/group.html @@ -220,7 +220,12 @@

Test clinic group

631 776 9904 - Nora Blake + + Nora Blake + + 30 December 1966 Remove @@ -228,7 +233,7 @@

Test clinic group

- Book into slots + Book this group
diff --git a/app/views/z-september-transactional-journey/pre-appoint-confirm.html b/app/views/z-september-transactional-journey/pre-appoint-confirm.html index 65c2da1..5f16178 100644 --- a/app/views/z-september-transactional-journey/pre-appoint-confirm.html +++ b/app/views/z-september-transactional-journey/pre-appoint-confirm.html @@ -8,57 +8,14 @@ {% endblock %} {% block beforeContent %} + + Back + {% endblock %} {% block content %} - - - - -
-
-

- Book participants into slots -

-
- -
-
- -
-
-
-
- 48 participants -
-
- from Test Clinic group -
-
-
- -
- into -
- -
-
-
- 48 available slots -
-
- in Test Clinic 1
- Tuesday 1 September 2026 -
-
- Unit name at location name -
-
-
- -
- -
-
- - - Book - - -

- or - cancel and go back -

+
+

+ Book participants +

+ +

You are booking 48 participants from Test Clinic group into:

+ +

+ Test Clinic 1 + Tuesday 1 September +

+

+ Waverley Breast Unit
+ Waverley Hospital +

+

48 slots available

+ + + Book + + +
diff --git a/app/views/z-september-transactional-journey/search-and-results.html b/app/views/z-september-transactional-journey/search-and-results.html index 53478a1..8fc6d47 100644 --- a/app/views/z-september-transactional-journey/search-and-results.html +++ b/app/views/z-september-transactional-journey/search-and-results.html @@ -13,7 +13,7 @@ {% include "z-september-transactional-journey/_includes/participant-search.html"%} -
+
+ +

No participants found

-

Check your spelling or search again

+

Try again

- -
+ {% endblock %} diff --git a/app/views/z-september-transactional-journey/z-pre-appoint-confirm-v1.html b/app/views/z-september-transactional-journey/z-pre-appoint-confirm-v1.html new file mode 100644 index 0000000..65c2da1 --- /dev/null +++ b/app/views/z-september-transactional-journey/z-pre-appoint-confirm-v1.html @@ -0,0 +1,151 @@ +{% extends 'layout.html' %} + +{% set pageName = "Assign slots to participants" %} + +{% from "z-september-transactional-journey/_includes/min-primary-navigation.html" import primaryNavigation %} +{% block header %} + {{ primaryNavigation() }} +{% endblock %} + +{% block beforeContent %} +{% endblock %} + +{% block content %} + + + + + +
+
+

+ Book participants into slots +

+
+
+ +
+
+ +
+ +
+
+
+ 48 participants +
+
+ from Test Clinic group +
+
+
+ +
+ into +
+ +
+
+
+ 48 available slots +
+
+ in Test Clinic 1
+ Tuesday 1 September 2026 +
+
+ Unit name at location name +
+
+
+ +
+ +
+
+ +
+
+ + + Book + + +

+ or + cancel and go back +

+
+
+ +{% endblock %} + +{% block footer %} + {{ footer() }} +{% endblock %} From 64e0fc27f0925e8ec03856f5b0ae72639d3840f5 Mon Sep 17 00:00:00 2001 From: Mat Johnson Date: Mon, 29 Jun 2026 10:06:38 +0100 Subject: [PATCH 5/9] Move csv link --- .../appointing-complete.html | 34 +++++++++---------- 1 file changed, 17 insertions(+), 17 deletions(-) diff --git a/app/views/z-september-transactional-journey/appointing-complete.html b/app/views/z-september-transactional-journey/appointing-complete.html index 4009272..79d4e5d 100644 --- a/app/views/z-september-transactional-journey/appointing-complete.html +++ b/app/views/z-september-transactional-journey/appointing-complete.html @@ -23,30 +23,30 @@ html: html, type: "success" }) }} -

- CLINC-ID - Test Clinic 1 -

-
- Unit name at location name +
+

+ CLINC-ID + Test Clinic 1 +

+
+ Unit name at location name +
+ {{ actionLink({ + text: "Download .csv", + href: "#" + }) }}
-
+
-
-

- Tuesday - 1 September 2026 -

- {{ actionLink({ - text: "Download .csv", - href: "#" - }) }} -
+

+ Tuesday + 1 September 2026 +

From d2eb32fbdbb0cd7c96655a763164cf769ce9ac8f Mon Sep 17 00:00:00 2001 From: Mat Johnson Date: Mon, 29 Jun 2026 12:33:41 +0100 Subject: [PATCH 6/9] Delete older page --- .../z-pre-appoint-confirm-v1.html | 151 ------------------ 1 file changed, 151 deletions(-) delete mode 100644 app/views/z-september-transactional-journey/z-pre-appoint-confirm-v1.html diff --git a/app/views/z-september-transactional-journey/z-pre-appoint-confirm-v1.html b/app/views/z-september-transactional-journey/z-pre-appoint-confirm-v1.html deleted file mode 100644 index 65c2da1..0000000 --- a/app/views/z-september-transactional-journey/z-pre-appoint-confirm-v1.html +++ /dev/null @@ -1,151 +0,0 @@ -{% extends 'layout.html' %} - -{% set pageName = "Assign slots to participants" %} - -{% from "z-september-transactional-journey/_includes/min-primary-navigation.html" import primaryNavigation %} -{% block header %} - {{ primaryNavigation() }} -{% endblock %} - -{% block beforeContent %} -{% endblock %} - -{% block content %} - - - - - -
-
-

- Book participants into slots -

-
-
- -
-
- -
- -
-
-
- 48 participants -
-
- from Test Clinic group -
-
-
- -
- into -
- -
-
-
- 48 available slots -
-
- in Test Clinic 1
- Tuesday 1 September 2026 -
-
- Unit name at location name -
-
-
- -
- -
-
- -
-
- - - Book - - -

- or - cancel and go back -

-
-
- -{% endblock %} - -{% block footer %} - {{ footer() }} -{% endblock %} From 55e03f4d53ebc84ed70b1c917106196aea8106da Mon Sep 17 00:00:00 2001 From: Mat Johnson Date: Mon, 29 Jun 2026 16:26:11 +0100 Subject: [PATCH 7/9] What if the csv was trimmed down alreaady --- .../_includes/participant-search.html | 4 +- .../batch-detail-trimmed-csv.html | 331 ++++++++++++++++++ .../group.html | 4 +- .../pre-appoint-confirm.html | 13 +- .../search-and-results.html | 158 ++++----- 5 files changed, 423 insertions(+), 87 deletions(-) create mode 100644 app/views/z-september-transactional-journey/batch-detail-trimmed-csv.html diff --git a/app/views/z-september-transactional-journey/_includes/participant-search.html b/app/views/z-september-transactional-journey/_includes/participant-search.html index 32a92eb..be9281f 100644 --- a/app/views/z-september-transactional-journey/_includes/participant-search.html +++ b/app/views/z-september-transactional-journey/_includes/participant-search.html @@ -65,7 +65,7 @@

- + \ No newline at end of file diff --git a/app/views/z-september-transactional-journey/batch-detail-trimmed-csv.html b/app/views/z-september-transactional-journey/batch-detail-trimmed-csv.html new file mode 100644 index 0000000..9e54116 --- /dev/null +++ b/app/views/z-september-transactional-journey/batch-detail-trimmed-csv.html @@ -0,0 +1,331 @@ +{% extends 'layout.html' %} + +{% set pageName = "Batch detail" %} + +{% from "z-september-transactional-journey/_includes/min-primary-navigation.html" import primaryNavigation %} +{% block header %} + {{ primaryNavigation() }} +{% endblock %} + +{% block beforeContent %}{% endblock %} + +{% block content %} + +
+
+ {% set html %} +

+ Batch uploaded +

+ {% endset %} + {{ notificationBanner({ + html: html, + type: "success" + }) }} +

+ BS1345815F + Test batch 1 +

+
+ Batch uploaded 11 June 2026 at 15:53 +
+
+
+ +
+
+
+
+

+ + 48 + +

+ total participants +
+
+
+
+ +
+ + + Show all participants + + + +
+ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ NHS Number + + Name + + Date of birth +
999 054 3666Billie Joanne Marquardt15 March 1960
943 582 7164Alice Marie Gregory8 November 1964
821 374 0952Daphne Hart22 July 1958
702 195 4836Marta O'Neill3 May 1971
614 287 9305Susan Carter19 September 1967
505 463 1129Olivia Barnes12 January 1975
336 774 2201Rachel Price27 April 1962
223 546 8870Hannah Wallace6 October 1959
410 559 3322Fiona Lambert14 December 1973
196 804 7753Georgia Mills30 June 1968
378 290 4601Elaine Fox11 February 1976
957 613 2084Tessa King25 August 1963
604 118 9756Nadia Singh7 April 1957
842 039 6617Jane Reed18 November 1970
731 259 1148Laura White29 May 1965
665 880 3320Marissa Young9 March 1961
548 901 7732Naomi Bell21 September 1974
439 216 5087Paige Long4 July 1969
329 487 9901Catherine Wood16 January 1956
214 603 1774Victoria Hale13 October 1966
188 905 6423Imogen Frost31 December 1972
977 332 1108Dara Moss24 June 1960
861 427 5930Sophie Hartley2 August 1962
750 218 3446Emma Cole17 April 1975
642 109 8875Megan Price5 February 1961
531 678 2209Mia Ford19 May 1972
419 502 6683Zoe Grant11 March 1965
308 244 1196Ariana Miles28 November 1959
297 883 4455Bethany Cross7 July 1975
186 771 9002Callie Morris14 September 1968
075 439 3321Helena Rowe2 April 1963
964 210 5587Danielle Nash23 June 1970
853 619 4470Faye Turner8 January 1957
742 908 2233Leona Grant15 October 1974
631 776 9904Nora Blake30 December 1966
520 665 8805Olivia Lee19 August 1960
419 554 7706Priya Desai10 May 1973
308 443 6607Quinn Park26 March 1964
197 332 5508Rosa Kirk13 July 1958
086 221 4409Shannon Boyd22 November 1971
975 110 3310Tara Voss9 February 1969
864 009 2201Uma Jha17 September 1962
753 898 1192Victoria Dean4 April 1976
642 787 0083Wendy Fox21 June 1967
531 676 9974Xena Holt11 December 1960
420 565 8865Yasmin Noor28 August 1961
319 454 7756Zara Moon6 May 1973
208 343 6647Abigail Stone14 October 1959
+
+ +
+ + + +{% endblock %} + +{% block footer %} + {{ footer() }} +{% endblock %} diff --git a/app/views/z-september-transactional-journey/group.html b/app/views/z-september-transactional-journey/group.html index 0a0d8f2..86f6a41 100644 --- a/app/views/z-september-transactional-journey/group.html +++ b/app/views/z-september-transactional-journey/group.html @@ -23,7 +23,7 @@ type: "success" }) }} - {% set html %} +

diff --git a/app/views/z-september-transactional-journey/pre-appoint-confirm.html b/app/views/z-september-transactional-journey/pre-appoint-confirm.html index 5f16178..c733582 100644 --- a/app/views/z-september-transactional-journey/pre-appoint-confirm.html +++ b/app/views/z-september-transactional-journey/pre-appoint-confirm.html @@ -15,7 +15,7 @@ {% block content %} -
+
@@ -57,12 +57,17 @@

48 slots available

+
+ Information: +

Participants will be booked in random order

+
+ Book -

diff --git a/app/views/z-september-transactional-journey/search-and-results.html b/app/views/z-september-transactional-journey/search-and-results.html index 8fc6d47..3e4723d 100644 --- a/app/views/z-september-transactional-journey/search-and-results.html +++ b/app/views/z-september-transactional-journey/search-and-results.html @@ -21,86 +21,86 @@

Search results

-
+ -

4 participants found

+

4 participants found

- + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ NHS Number + + Name + + Date of birth +
+
+ + +
+
531 676 9974Xena Holt11 December 1960
+
+ + +
+
420 565 8865Yasmin Noor28 August 1961
+
+ + +
+
319 454 7756Zara Moon6 May 1973
+
+ + +
+
208 343 6647Abigail Stone14 October 1959
+ + Add selected to booking group @@ -110,14 +110,14 @@

4 participants found

-
+ {% endblock %} From 3ce29fb58f23c270022c23b3892da71132e8481b Mon Sep 17 00:00:00 2001 From: Mat Johnson Date: Mon, 29 Jun 2026 16:32:43 +0100 Subject: [PATCH 8/9] Promote the trimmed csv journey to first choice --- app/views/index.html | 21 ++++++++++++------- .../pre-appoint-confirm.html | 2 +- .../upload-a-batch.html | 2 +- 3 files changed, 16 insertions(+), 9 deletions(-) diff --git a/app/views/index.html b/app/views/index.html index ac0a368..29f084a 100755 --- a/app/views/index.html +++ b/app/views/index.html @@ -89,7 +89,8 @@

March 2026


Work for September Test

-

Iteration 1: transactional journey

+

Iteration 1

+

Users upload a csv containing the participants they wish to book into a prearranged single day clinic.

Simple click through journey

@@ -97,6 +98,18 @@

Iteration 1: transactional journey

  • Upload a batch
  • +
  • + Batch detail for trimmed csv +
  • +
  • + Pre-appointment confirmation +
  • +
  • + Single day of appointments +
  • + +

    Defunct work on finding and grouping participants. Components to be reused elsewhere.

    +
    1. Batch detail
    2. @@ -109,15 +122,9 @@

      Iteration 1: transactional journey

    3. Group
    4. -
    5. - Pre-appointment confirmation -
    6. [Utility] "appointing" spinner
    7. -
    8. - Single day of appointments -

    diff --git a/app/views/z-september-transactional-journey/pre-appoint-confirm.html b/app/views/z-september-transactional-journey/pre-appoint-confirm.html index c733582..24d0513 100644 --- a/app/views/z-september-transactional-journey/pre-appoint-confirm.html +++ b/app/views/z-september-transactional-journey/pre-appoint-confirm.html @@ -8,7 +8,7 @@ {% endblock %} {% block beforeContent %} - + Back {% endblock %} diff --git a/app/views/z-september-transactional-journey/upload-a-batch.html b/app/views/z-september-transactional-journey/upload-a-batch.html index 001e93e..a0f79b3 100644 --- a/app/views/z-september-transactional-journey/upload-a-batch.html +++ b/app/views/z-september-transactional-journey/upload-a-batch.html @@ -21,7 +21,7 @@

    - + Upload file
    From 9d99584a31a5319e876b25ade7409b5758d5775d Mon Sep 17 00:00:00 2001 From: Mat Johnson Date: Mon, 29 Jun 2026 16:45:03 +0100 Subject: [PATCH 9/9] Shuffle the participant order in the first table --- .../batch-detail-trimmed-csv.html | 282 +++++++++--------- 1 file changed, 141 insertions(+), 141 deletions(-) diff --git a/app/views/z-september-transactional-journey/batch-detail-trimmed-csv.html b/app/views/z-september-transactional-journey/batch-detail-trimmed-csv.html index 9e54116..d2e1b87 100644 --- a/app/views/z-september-transactional-journey/batch-detail-trimmed-csv.html +++ b/app/views/z-september-transactional-journey/batch-detail-trimmed-csv.html @@ -69,96 +69,95 @@

    - - - 999 054 3666 - Billie Joanne Marquardt - 15 March 1960 + + 186 771 9002 + Callie Morris + 14 September 1968 - 943 582 7164 - Alice Marie Gregory - 8 November 1964 + 750 218 3446 + Emma Cole + 17 April 1975 - 821 374 0952 - Daphne Hart - 22 July 1958 + 642 109 8875 + Megan Price + 5 February 1961 - 702 195 4836 - Marta O'Neill - 3 May 1971 + 378 290 4601 + Elaine Fox + 11 February 1976 - 614 287 9305 - Susan Carter - 19 September 1967 + 977 332 1108 + Dara Moss + 24 June 1960 - 505 463 1129 - Olivia Barnes - 12 January 1975 + 196 804 7753 + Georgia Mills + 30 June 1968 - 336 774 2201 - Rachel Price - 27 April 1962 + 075 439 3321 + Helena Rowe + 2 April 1963 - 223 546 8870 - Hannah Wallace - 6 October 1959 + 086 221 4409 + Shannon Boyd + 22 November 1971 - 410 559 3322 - Fiona Lambert - 14 December 1973 + 604 118 9756 + Nadia Singh + 7 April 1957 - 196 804 7753 - Georgia Mills - 30 June 1968 + 702 195 4836 + Marta O'Neill + 3 May 1971 - 378 290 4601 - Elaine Fox - 11 February 1976 + 520 665 8805 + Olivia Lee + 19 August 1960 - 957 613 2084 - Tessa King - 25 August 1963 + 614 287 9305 + Susan Carter + 19 September 1967 - 604 118 9756 - Nadia Singh - 7 April 1957 + 642 787 0083 + Wendy Fox + 21 June 1967 - 842 039 6617 - Jane Reed - 18 November 1970 + 419 502 6683 + Zoe Grant + 11 March 1965 - 731 259 1148 - Laura White - 29 May 1965 + 957 613 2084 + Tessa King + 25 August 1963 - 665 880 3320 - Marissa Young - 9 March 1961 + 742 908 2233 + Leona Grant + 15 October 1974 - 548 901 7732 - Naomi Bell - 21 September 1974 + 297 883 4455 + Bethany Cross + 7 July 1975 - 439 216 5087 - Paige Long - 4 July 1969 + 864 009 2201 + Uma Jha + 17 September 1962 329 487 9901 @@ -166,94 +165,95 @@

    16 January 1956 - 214 603 1774 - Victoria Hale - 13 October 1966 + 964 210 5587 + Danielle Nash + 23 June 1970 - 188 905 6423 - Imogen Frost - 31 December 1972 + 319 454 7756 + Zara Moon + 6 May 1973 - 977 332 1108 - Dara Moss - 24 June 1960 + 853 619 4470 + Faye Turner + 8 January 1957 - 861 427 5930 - Sophie Hartley - 2 August 1962 + 419 554 7706 + Priya Desai + 10 May 1973 - 750 218 3446 - Emma Cole - 17 April 1975 + 531 678 2209 + Mia Ford + 19 May 1972 - 642 109 8875 - Megan Price - 5 February 1961 + 188 905 6423 + Imogen Frost + 31 December 1972 - 531 678 2209 - Mia Ford - 19 May 1972 + 861 427 5930 + Sophie Hartley + 2 August 1962 - 419 502 6683 - Zoe Grant - 11 March 1965 + 208 343 6647 + Abigail Stone + 14 October 1959 - 308 244 1196 - Ariana Miles - 28 November 1959 + 531 676 9974 + Xena Holt + 11 December 1960 + - 297 883 4455 - Bethany Cross - 7 July 1975 + 999 054 3666 + Billie Joanne Marquardt + 15 March 1960 - 186 771 9002 - Callie Morris - 14 September 1968 + 214 603 1774 + Victoria Hale + 13 October 1966 - 075 439 3321 - Helena Rowe - 2 April 1963 + 548 901 7732 + Naomi Bell + 21 September 1974 - 964 210 5587 - Danielle Nash - 23 June 1970 + 753 898 1192 + Victoria Dean + 4 April 1976 - 853 619 4470 - Faye Turner - 8 January 1957 + 842 039 6617 + Jane Reed + 18 November 1970 - 742 908 2233 - Leona Grant - 15 October 1974 + 197 332 5508 + Rosa Kirk + 13 July 1958 - 631 776 9904 - Nora Blake - 30 December 1966 + 420 565 8865 + Yasmin Noor + 28 August 1961 - 520 665 8805 - Olivia Lee - 19 August 1960 + 821 374 0952 + Daphne Hart + 22 July 1958 - 419 554 7706 - Priya Desai - 10 May 1973 + 308 244 1196 + Ariana Miles + 28 November 1959 308 443 6607 @@ -261,56 +261,56 @@

    26 March 1964 - 197 332 5508 - Rosa Kirk - 13 July 1958 + 505 463 1129 + Olivia Barnes + 12 January 1975 - 086 221 4409 - Shannon Boyd - 22 November 1971 + 631 776 9904 + Nora Blake + 30 December 1966 - 975 110 3310 - Tara Voss - 9 February 1969 + 336 774 2201 + Rachel Price + 27 April 1962 - 864 009 2201 - Uma Jha - 17 September 1962 + 410 559 3322 + Fiona Lambert + 14 December 1973 - 753 898 1192 - Victoria Dean - 4 April 1976 + 731 259 1148 + Laura White + 29 May 1965 - 642 787 0083 - Wendy Fox - 21 June 1967 + 665 880 3320 + Marissa Young + 9 March 1961 - 531 676 9974 - Xena Holt - 11 December 1960 + 439 216 5087 + Paige Long + 4 July 1969 - 420 565 8865 - Yasmin Noor - 28 August 1961 + 943 582 7164 + Alice Marie Gregory + 8 November 1964 - 319 454 7756 - Zara Moon - 6 May 1973 + 223 546 8870 + Hannah Wallace + 6 October 1959 - 208 343 6647 - Abigail Stone - 14 October 1959 + 975 110 3310 + Tara Voss + 9 February 1969 - +