-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathevaluation-review.html
More file actions
executable file
·503 lines (474 loc) · 15.2 KB
/
evaluation-review.html
File metadata and controls
executable file
·503 lines (474 loc) · 15.2 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
{% extends 'layout.html' %}
{% set pageName = "Share your evaluation" %}
{% set serviceHeader = "Search and evaluate medical technologies" %}
{% block beforeContent %}
{{ breadcrumb({
items: [
{
text: "Home",
href: "/"
},
{
text: "Share evaluation",
href: "/share-evaluation"
}
],
attributes: {
"aria-label": "Breadcrumb"
}
}) }}
{% endblock %}
{% block content %}
<div class="nhsuk-grid-row">
<div class="nhsuk-grid-column-two-thirds">
<h1 class="nhsuk-heading-xl">Evaluation details</h1>
<p class="nhsuk-body">Tell us about your evaluation of <strong>SmartPump Infusion Device Pro</strong></p>
<form action="/evaluation-upload" method="post">
<!-- About the evaluation section -->
<h2 class="nhsuk-heading-l nhsuk-u-margin-top-7">About the evaluation</h2>
{{ input({
label: {
text: "Your trust",
classes: "nhsuk-label--s"
},
id: "trust-name",
name: "trust-name",
value: "Mid England NHS Foundation Trust",
attributes: {
readonly: "readonly"
},
hint: {
text: "This is automatically filled from your account"
}
}) }}
{{ select({
id: "evaluation-type",
name: "evaluation-type",
label: {
text: "Evaluation type",
classes: "nhsuk-label--s"
},
hint: {
text: "Select the type of evaluation you conducted"
},
items: [
{
value: "",
text: "Select type",
selected: true
},
{
value: "in-service",
text: "In-service evaluation"
},
{
value: "clinical-trial",
text: "Clinical trial"
},
{
value: "user-feedback",
text: "User feedback study"
},
{
value: "value-assessment",
text: "Value assessment"
},
{
value: "other",
text: "Other"
}
]
}) }}
<div class="nhsuk-form-group">
<fieldset class="nhsuk-fieldset">
<legend class="nhsuk-fieldset__legend nhsuk-label--s">
When was this evaluation conducted?
</legend>
<div class="nhsuk-hint" id="date-hint">
Select the start and end dates of your evaluation
</div>
<div class="nhsuk-date-input" id="evaluation-date">
<div class="nhsuk-date-input__item">
<div class="nhsuk-form-group">
<label class="nhsuk-label nhsuk-date-input__label" for="start-month">
Start month
</label>
<select class="nhsuk-select nhsuk-date-input__input nhsuk-input--width-5" id="start-month" name="start-month">
<option value="">Month</option>
<option value="01">January</option>
<option value="02">February</option>
<option value="03">March</option>
<option value="04">April</option>
<option value="05">May</option>
<option value="06">June</option>
<option value="07">July</option>
<option value="08">August</option>
<option value="09">September</option>
<option value="10">October</option>
<option value="11">November</option>
<option value="12">December</option>
</select>
</div>
</div>
<div class="nhsuk-date-input__item">
<div class="nhsuk-form-group">
<label class="nhsuk-label nhsuk-date-input__label" for="start-year">
Start year
</label>
<select class="nhsuk-select nhsuk-date-input__input nhsuk-input--width-5" id="start-year" name="start-year">
<option value="">Year</option>
<option value="2025">2025</option>
<option value="2024">2024</option>
<option value="2023">2023</option>
<option value="2022">2022</option>
<option value="2021">2021</option>
</select>
</div>
</div>
</div>
<div class="nhsuk-date-input nhsuk-u-margin-top-4" id="evaluation-date-end">
<div class="nhsuk-date-input__item">
<div class="nhsuk-form-group">
<label class="nhsuk-label nhsuk-date-input__label" for="end-month">
End month
</label>
<select class="nhsuk-select nhsuk-date-input__input nhsuk-input--width-5" id="end-month" name="end-month">
<option value="">Month</option>
<option value="01">January</option>
<option value="02">February</option>
<option value="03">March</option>
<option value="04">April</option>
<option value="05">May</option>
<option value="06">June</option>
<option value="07">July</option>
<option value="08">August</option>
<option value="09">September</option>
<option value="10">October</option>
<option value="11">November</option>
<option value="12">December</option>
</select>
</div>
</div>
<div class="nhsuk-date-input__item">
<div class="nhsuk-form-group">
<label class="nhsuk-label nhsuk-date-input__label" for="end-year">
End year
</label>
<select class="nhsuk-select nhsuk-date-input__input nhsuk-input--width-5" id="end-year" name="end-year">
<option value="">Year</option>
<option value="2025">2025</option>
<option value="2024">2024</option>
<option value="2023">2023</option>
<option value="2022">2022</option>
<option value="2021">2021</option>
</select>
</div>
</div>
</div>
</fieldset>
</div>
{{ textarea({
name: "scale",
id: "scale",
label: {
text: "Scale of evaluation",
classes: "nhsuk-label--s"
},
hint: {
text: "How many units tested or patients involved?"
},
rows: "2",
attributes: {
placeholder: "e.g., 5 devices over 6 months, 200 patients"
}
}) }}
<!-- Clinical context section -->
<h2 class="nhsuk-heading-l nhsuk-u-margin-top-7">Clinical context</h2>
{{ checkboxes({
idPrefix: "departments",
name: "departments",
fieldset: {
legend: {
text: "Department(s) involved",
classes: "nhsuk-fieldset__legend--s"
}
},
hint: {
text: "Select all departments that participated in the evaluation"
},
items: [
{
value: "cardiology",
text: "Cardiology"
},
{
value: "emergency",
text: "Emergency Department"
},
{
value: "surgery",
text: "Surgery"
},
{
value: "renal",
text: "Renal"
},
{
value: "paediatrics",
text: "Paediatrics"
},
{
value: "intensive-care",
text: "Intensive Care"
},
{
value: "other",
text: "Other",
conditional: {
html: input({
id: "department-other",
name: "department-other",
label: {
text: "Please specify"
}
})
}
}
]
}) }}
<div class="nhsuk-form-group nhsuk-u-margin-top-6">
<fieldset class="nhsuk-fieldset">
<legend class="nhsuk-fieldset__legend nhsuk-fieldset__legend--s">
Lead clinical champion
</legend>
<div class="nhsuk-hint">
This will be visible to other trusts for follow-up questions
</div>
{{ input({
label: {
text: "Name"
},
id: "champion-name",
name: "champion-name"
}) }}
{{ input({
label: {
text: "Role"
},
id: "champion-role",
name: "champion-role",
attributes: {
placeholder: "e.g., Consultant Cardiologist"
}
}) }}
{{ input({
label: {
text: "Email"
},
id: "champion-email",
name: "champion-email",
type: "email"
}) }}
</fieldset>
</div>
<!-- Your findings section -->
<h2 class="nhsuk-heading-l nhsuk-u-margin-top-7">Your findings</h2>
{{ radios({
idPrefix: "recommendation",
name: "recommendation",
fieldset: {
legend: {
text: "Overall recommendation",
classes: "nhsuk-fieldset__legend--s"
}
},
items: [
{
value: "highly-recommend",
text: "Highly recommend",
hint: {
text: "Clear improvement over alternatives"
}
},
{
value: "recommend",
text: "Recommend",
hint: {
text: "Good option worth considering"
}
},
{
value: "conditional",
text: "Conditional",
hint: {
text: "Works well in specific contexts"
}
},
{
value: "not-recommend",
text: "Do not recommend",
hint: {
text: "Significant concerns identified"
}
}
]
}) }}
{{ checkboxes({
idPrefix: "benefits",
name: "benefits",
fieldset: {
legend: {
text: "Key benefits identified",
classes: "nhsuk-fieldset__legend--s"
},
attributes: {
"aria-describedby": "benefits-hint"
}
},
hint: {
text: "Select all that apply"
},
items: [
{
value: "patient-outcomes",
text: "Improved patient outcomes"
},
{
value: "reduced-time",
text: "Reduced clinical time/workload"
},
{
value: "safety",
text: "Better safety profile"
},
{
value: "ease-of-use",
text: "Easier to use than alternatives"
},
{
value: "cost",
text: "Lower total cost of ownership"
},
{
value: "integration",
text: "Better integration with existing systems"
},
{
value: "patient-experience",
text: "Improved patient experience"
},
{
value: "other",
text: "Other",
conditional: {
html: input({
id: "benefits-other",
name: "benefits-other",
label: {
text: "Please specify"
}
})
}
}
]
}) }}
{{ radios({
idPrefix: "issues",
name: "issues",
fieldset: {
legend: {
text: "Were any issues or concerns identified?",
classes: "nhsuk-fieldset__legend--s"
}
},
items: [
{
value: "no-issues",
text: "No significant issues"
},
{
value: "minor",
text: "Minor issues (please describe below)"
},
{
value: "significant",
text: "Significant concerns (please describe below)"
}
]
}) }}
<div class="nhsuk-character-count" data-module="nhsuk-character-count" data-maxlength="500">
{{ textarea({
name: "summary",
id: "summary",
label: {
text: "Summary of findings",
classes: "nhsuk-label--s"
},
hint: {
html: 'Briefly describe your evaluation findings and any key outcomes. This will help other trusts understand the context.<br><br>
<details class="nhsuk-details">
<summary class="nhsuk-details__summary">
<span class="nhsuk-details__summary-text">
See an example
</span>
</summary>
<div class="nhsuk-details__text">
<div class="nhsuk-inset-text">
<p>"Evaluated 5 SmartPump devices over 6 months in cardiology and renal units. Reduced medication errors by 40% compared to previous system. Staff training took longer than expected but satisfaction scores improved significantly. Recommend for high-acuity wards."</p>
</div>
</div>
</details>'
},
rows: "6",
attributes: {
"data-maxlength": "500"
}
}) }}
<div id="summary-info" class="nhsuk-hint nhsuk-character-count__message">
You can enter up to 500 characters
</div>
</div>
{{ textarea({
name: "concerns",
id: "concerns",
label: {
text: "Specific concerns or limitations (optional)",
classes: "nhsuk-label--s"
},
hint: {
text: 'e.g., "Integration with our EPR system required custom work" or "Not suitable for paediatric use"'
},
rows: "3"
}) }}
<!-- Clinical outcome measures section -->
<h2 class="nhsuk-heading-l nhsuk-u-margin-top-7">Clinical outcome measures</h2>
<p class="nhsuk-body-s nhsuk-u-secondary-text-color">Optional but recommended</p>
{{ textarea({
name: "outcomes",
id: "outcomes",
label: {
text: "Did you measure any specific clinical outcomes?",
classes: "nhsuk-label--s"
},
hint: {
text: 'e.g., "Reduced medication errors by 40%, Decreased adverse events from 12 to 3 over evaluation period"'
},
rows: "3"
}) }}
<div class="nhsuk-inset-text nhsuk-u-margin-top-7">
<span class="nhsuk-u-visually-hidden">Information: </span>
<p><strong>* Required fields</strong></p>
<p class="nhsuk-body-s">Your evaluation will be visible to NHS procurement professionals across the country to help them make informed decisions.</p>
</div>
<div class="nhsuk-form-group nhsuk-u-margin-top-6">
<button class="nhsuk-button" data-module="nhsuk-button" type="submit">
Continue to upload documents
</button>
<p>
<a href="/save-draft" class="nhsuk-link nhsuk-link--no-visited-state">Save as draft</a>
</p>
</div>
</form>
</div>
</div>
{% endblock %}