-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathevaluation-choice.html
More file actions
95 lines (68 loc) · 2.64 KB
/
evaluation-choice.html
File metadata and controls
95 lines (68 loc) · 2.64 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
{% extends prototypeVersion + '/layouts/layout-signed-in.html' %}
{% set pageName = "Share with the network" %}
{% set serviceHeader = "Search medical product evaluations" %}
{% block beforeContent %}
{{ breadcrumb({
items: [
{
text: "Back to dashboard",
href: "/"
}
],
attributes: {
"aria-label": "Breadcrumb"
}
}) }}
{% endblock %}
{% block content %}
<div class="nhsuk-grid-row">
<div class="nhsuk-grid-column-full">
<h1 class="nhsuk-heading-l">What do you want to share today?</h1>
<p>Choose a document type to share. Your experience will help other trusts make better procurement decisions.</p>
</div>
</div>
<div class="nhsuk-grid-row">
<div class="nhsuk-grid-column-one-half">
<div class="nhsuk-card nhsuk-card--clickable nhsuk-u-margin-bottom-4">
<div class="nhsuk-card__content">
<h2 class="nhsuk-card__heading nhsuk-heading-m">
<a class="nhsuk-card__link" href="quick-share-upload-multiple">Product evaluation</a>
</h2>
<p class="nhsuk-card__description">A report or document from when your trust trialled, assessed or reviewed a product</p>
</div>
</div>
</div>
<div class="nhsuk-grid-column-one-half">
<div class="nhsuk-card nhsuk-card--clickable nhsuk-u-margin-bottom-6">
<div class="nhsuk-card__content">
<h2 class="nhsuk-card__heading nhsuk-heading-m">
<a class="nhsuk-card__link" href="upload-business-case">Business case</a>
</h2>
<p class="nhsuk-card__description">A document making the strategic, clinical or financial case for procuring a product</p>
</div>
</div>
</div>
</div>
<div class="nhsuk-grid-row">
<div class="nhsuk-grid-column-one-half">
<div class="nhsuk-card nhsuk-card--clickable nhsuk-u-margin-bottom-4">
<div class="nhsuk-card__content">
<h2 class="nhsuk-card__heading nhsuk-heading-m">
<a class="nhsuk-card__link" href="upload-evaluation-criteria">Evaluation criteria</a>
</h2>
<p class="nhsuk-card__description">A set of standards or measures used to assess a product</p>
</div>
</div>
</div>
<div class="nhsuk-grid-column-one-half">
<div class="nhsuk-card nhsuk-card--clickable nhsuk-u-margin-bottom-6">
<div class="nhsuk-card__content">
<h2 class="nhsuk-card__heading nhsuk-heading-m">
<a class="nhsuk-card__link" href="upload-case-study">Case study</a>
</h2>
<p class="nhsuk-card__description">A detailed account of how a product was implemented and its outcomes</p>
</div>
</div>
</div>
</div>
{% endblock %}