Skip to content

Commit b4035d4

Browse files
committed
changes
1 parent fbc39bb commit b4035d4

File tree

1 file changed

+38
-4
lines changed

1 file changed

+38
-4
lines changed

app/views/regions/v1/onboarding0.html

Lines changed: 38 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -16,13 +16,47 @@
1616
<div class="nhsuk-grid-column-two-thirds">
1717

1818
<h1 class="nhsuk-heading-xl">Apply to use the Record a vaccination service</h1>
19-
20-
<p>We'll ask you for some contact details, including an NHS-approved email address. See the <a href="https://digital.nhs.uk/services/care-identity-service/applications-and-services/apply-for-care-id/care-identity-email-domain-allow-list" target="_blank">list of approved email domains (opens in new tab)</a>.</p>
21-
2219

23-
<p>Your NHS region will then review your application. We'll let you know within within 7 working days if it has been approved.</p>
20+
<p>Your NHS region will review your application. We'll let you know within 7 working days if it has been approved.</p>
2421

2522

23+
<div class="nhsuk-form-group">
24+
<h2 class="nhsuk-label-wrapper">
25+
<label class="nhsuk-label nhsuk-label--m nhsuk-u-margin-bottom-1" for="organisationCode">
26+
NHS organisation or community pharmacy
27+
</label>
28+
</h2>
29+
<div class="nhsuk-hint" id="organisationName-hint">
30+
Search by name or ODS code
31+
</div>
32+
<select class="nhsuk-select" id="organisationCode" name="organisationCode"
33+
data-module="autocomplete" data-autoselect="" data-display-menu="" data-min-length="" data-show-all-values="" data-show-no-options-found="">
34+
<option selected value=""></option>
35+
36+
{% set options = [] %}
37+
38+
{% for code, name in data.nhsTrusts %}
39+
{% set options = (options.push({
40+
label: name + " (" + code + ")",
41+
value: code
42+
}), options) %}
43+
{% endfor %}
44+
45+
{% for code, data in data.nhsPharmacies %}
46+
{% set options = (options.push({
47+
label: data.name + ", " + data.address + ", " + (data.postcode | upper) + " (" + code + ")",
48+
value: code
49+
}), options) %}
50+
{% endfor %}
51+
52+
{% for option in (options | sort(false, true, "label")) %}
53+
<option value="{{ option.value }}">{{ option.label }}</option>
54+
{% endfor %}
55+
</select>
56+
</div>
57+
58+
59+
2660
<form action="/regions/v1/onboarding1" method="post">
2761

2862

0 commit comments

Comments
 (0)