-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathdashboard.html
More file actions
executable file
·96 lines (52 loc) · 1.96 KB
/
dashboard.html
File metadata and controls
executable file
·96 lines (52 loc) · 1.96 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
{% extends prototypeVersion + '/layouts/layout-signed-in.html' %}
{% set pageName = "Dashboard - Welcome back" %}
{% set serviceHeader = "Medical product evaluations" %}
<!--
In /app/views/layout.html you can:
- change the header and footer
- add custom CSS and JavaScript
-->
{% block beforeContent %}
{% endblock %}
{% block content %}
<!-- NHS 10 Year Plan Context -->
<div class="nhsuk-grid-row nhsuk-u-margin-top-7">
<div class="nhsuk-grid-column-two-thirds">
<span class="nhsuk-hint">Kelvin Simpson</span>
<h1 class='nhsuk-heading-l'>Welcome back</h1>
<p class="nhsuk-body nhsuk-body-l"> How will you shape procurement in your trust today? </p>
</div>
</div>
<!-- NHS 10 Year Plan Context -->
<div class="nhsuk-grid-row nhsuk-u-margin-top-7">
<div class="nhsuk-grid-column-full">
<div class="nhsuk-grid-row">
<div class="nhsuk-grid-column-one-half">
<div class="nhsuk-card nhsuk-card--clickable">
<div class="nhsuk-card__content">
<h3 class="nhsuk-card__heading"><a href="search">Search and compare medical technologies</a></h3>
<p>Look up a specific product or browse categories to find evidence and peer contact information.</p>
</div>
</div>
</div>
<div class="nhsuk-grid-column-one-half">
<div class="nhsuk-card nhsuk-card--clickable">
<div class="nhsuk-card__content">
<h3 class="nhsuk-card__heading"><a href="evaluation-choice">Share your experience with medical technologies</a></h3>
<p>Upload your own product trials, case studies, evaluation criteria or business cases.</p>
</div>
</div>
</div>
</div>
</div>
</div>
{% endblock %}
{% block pageScripts %}
<script src="https://cdn.jsdelivr.net/npm/accessible-autocomplete@2.0.4/dist/accessible-autocomplete.min.js"></script>
<script type="text/javascript">
accessibleAutocomplete.enhanceSelectElement({
defaultValue: '',
selectElement: document.querySelector('#product-picker')
})
</script>
{% endblock %}