-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathshare-evaluation.html
More file actions
executable file
·97 lines (62 loc) · 2.13 KB
/
share-evaluation.html
File metadata and controls
executable file
·97 lines (62 loc) · 2.13 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
<!-- Use this page as the index for your project -->
<!-- ADDING CUSTOM CSS - Add your custom CSS or Sass in /app/assets/sass/main.scss -->
<!-- Extends the layout from /app/views/layout.html -->
{% extends 'layout-signed-in.html' %}
<!--
In /app/views/layout.html you can:
- change the header and footer
- add custom CSS and JavaScript
-->
{% set pageName = "Share an evaluation" %}
{
{% 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">
<h1 class='nhsuk-heading-l'>Share your evaluation</h1>
<p class="nhsuk-body nhsuk-body-l"> Help other NHS trusts make informed decisions by sharing your product evaluation. </p>
{% include "includes/suppliers.html" %}
</div>
</div>
<!-- NHS 10 Year Plan Context -->
<div class="nhsuk-grid-row nhsuk-u-margin-top-7">
<div class="nhsuk-grid-column-full">
<h2 class="nhsuk-heading-m">Recent evaluations at your trust</h2>
<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">
Acme Ultrasound System X200
</h3>
<p><span class="nhsuk-tag nhsuk-tag--green">Evaluated</span></p>
<p><a href="">View or update</a></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">
SmartPump Infusion Device Pro
</h3>
<p><span class="nhsuk-tag nhsuk-tag--green">Evaluated</span></p>
<p><a href="">View or update</a></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('#supplier-picker')
})
</script>
{% endblock %}