diff --git a/app/views/batches/batch-detail-in-progress.html b/app/views/batches/batch-detail-in-progress.html index bf449d4..945a171 100644 --- a/app/views/batches/batch-detail-in-progress.html +++ b/app/views/batches/batch-detail-in-progress.html @@ -140,7 +140,7 @@

Participant breakdown

  • - 700 standard
    + 700 standard
    ready to appoint
  • @@ -168,7 +168,7 @@

    Participant breakdown

    }) %}
    - 700 standard
    + 700 standard
    ready to appoint
    {% endcall %} @@ -179,7 +179,7 @@

    Participant breakdown

    }) %}
    - 10 special requirements
    + 10 special requirements
    reasonable adjustments etc.
    {% endcall %} @@ -195,7 +195,7 @@

    Participant breakdown

    {% endcall %} - + @@ -252,7 +252,7 @@

    Batch progress

    Appointed

    - Standard + Standard
    @@ -268,7 +268,7 @@

    Appoint
    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 %}