-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathbusiness-case-shared.html
More file actions
98 lines (79 loc) · 4.05 KB
/
business-case-shared.html
File metadata and controls
98 lines (79 loc) · 4.05 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
{% extends prototypeVersion + '/layouts/layout-signed-in.html' %}
{% set pageName = "Business case shared" %}
{% block content %}
<div class="nhsuk-grid-row">
<div class="nhsuk-grid-column-two-thirds">
<div class="nhsuk-panel nhsuk-panel--confirmation nhsuk-u-margin-top-7 nhsuk-u-margin-bottom-7">
<h1 class="nhsuk-panel__title">
Business case shared successfully
</h1>
<div class="nhsuk-panel__body">
Your business case for<br>
<strong>
{% if data['bc-product'] == 'smartpump-infusion-device-pro' %}SmartPump Infusion Device Pro
{% elif data['bc-product'] == 'medflow-infusion-system' %}MedFlow Infusion System 3000
{% elif data['bc-product'] == 'vitalguard-patient-monitor' %}VitalGuard Patient Monitor X1
{% elif data['bc-product'] == 'scanmaster-ultrasound' %}ScanMaster Portable Ultrasound
{% elif data['bc-product'] == 'other' %}{{ data['bc-product-other'] }}
{% else %}your product{% endif %}
</strong><br>
is now visible to NHS procurement professionals
</div>
</div>
<div class="nhsuk-card nhsuk-card--care nhsuk-u-margin-top-4">
<div class="nhsuk-card__content">
<h3 class="nhsuk-card__heading">Your impact</h3>
<p class="nhsuk-body-s">You've now shared <strong>1 business case</strong> that can help other NHS trusts build their own procurement proposals.</p>
<p class="nhsuk-body-s">Business cases are among the most requested documents.</p>
</div>
</div>
<h2 class="nhsuk-heading-m nhsuk-u-margin-top-6">What happens next?</h2>
<ul class="nhsuk-list nhsuk-list--bullet">
<li>Other trusts and the product supplier will soon be able to view your business case.</li>
<li>You can update or remove your business case at any time from your dashboard.</li>
<li>Contacts you listed may be approached by other trusts with questions about your submission.</li>
</ul>
<a class="nhsuk-action-link" href="#">
<svg class="nhsuk-icon nhsuk-icon--arrow-right-circle" xmlns="http://www.w3.org/2000/svg" viewBox="0 0 24 24" width="16" height="16" focusable="false" aria-hidden="true">
<path d="M12 2a10 10 0 0 0-10 9h11.7l-4-4a1 1 0 0 1 1.5-1.4l5.6 5.7a1 1 0 0 1 0 1.4l-5.6 5.7a1 1 0 0 1-1.5 0 1 1 0 0 1 0-1.4l4-4H2A10 10 0 1 0 12 2z"></path>
</svg>
<span class="nhsuk-action-link__text">View your business case as others see it</span>
</a>
<div class="nhsuk-form-group">
<button class="nhsuk-button" data-module="nhsuk-button" type="submit" onclick="window.location.href='share-evaluation-choice'">
Share something else
</button>
<p>
<a href="/" class="nhsuk-link">Return to dashboard</a>
</p>
</div>
<hr class="nhsuk-section-break nhsuk-section-break--l nhsuk-section-break--visible">
<h2 class="nhsuk-heading-m">Do you also have an evaluation to share?</h2>
<p>A business case is most useful to other trusts when it's paired with a product evaluation. If your trust has assessed this product clinically, sharing that evaluation gives others the full picture.</p>
<p>
<a href="upload-evaluation" class="nhsuk-button nhsuk-button--secondary">
Share a product evaluation
</a>
</p>
<hr class="nhsuk-section-break nhsuk-section-break--l nhsuk-section-break--visible">
</div>
</div>
<div class="nhsuk-grid-row">
<div class="nhsuk-grid-column-two-thirds">
<div id="contact">
<div class="nhsuk-card nhsuk-card--care nhsuk-card--care--non-urgent">
<div class="nhsuk-card--care__heading-container">
<h2 class="nhsuk-card--care__heading">
Need help?
</h2>
<span class="nhsuk-card--care__arrow" aria-hidden="true"></span>
</div>
<div class="nhsuk-card__content">
<p>If you have questions about managing your submissions:</p>
<p>Contact the team on 0330 2234 776 or email: <a href="mailto:enquiries@dhsc.gov.uk">enquiries@dhsc.gov.uk</a></p>
</div>
</div>
</div>
</div>
</div>
{% endblock %}