-
Notifications
You must be signed in to change notification settings - Fork 24
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #3392 from uktrade/feat/contact-us-journey-revamp-…
…confirmation-page-data-access-request feat/restyle content change for confirmation page of request-access journey for datasets
- Loading branch information
Showing
1 changed file
with
23 additions
and
51 deletions.
There are no files selected for viewing
74 changes: 23 additions & 51 deletions
74
dataworkspace/dataworkspace/templates/request_access/confirmation-page.html
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,65 +1,37 @@ | ||
{% extends '_main.html' %} | ||
{% block page_title %}Request complete - {{block.super }}{% endblock page_title %} | ||
{% block breadcrumbs %} | ||
<div class="govuk-breadcrumbs"> | ||
<ol class="govuk-breadcrumbs__list"> | ||
<li class="govuk-breadcrumbs__list-item"> | ||
<a class="govuk-breadcrumbs__link" href="/">Home</a> | ||
</li> | ||
<li class="govuk-breadcrumbs__list-item">Request access</li> | ||
</ol> | ||
</div> | ||
{% endblock %} | ||
{% extends '_main.html' %} | ||
{% block page_title %}Request complete - {{block.super }}{% endblock page_title %} | ||
{% block content %} | ||
<div class="govuk-grid-row"> | ||
<div class="govuk-grid-column-two-thirds"> | ||
<div class="govuk-panel govuk-panel--confirmation"> | ||
<h1 class="govuk-panel__title">Request complete</h1> | ||
<h1 class="govuk-panel__title">Request received</h1> | ||
<div class="govuk-panel__body"> | ||
Your reference number<br /><strong>{{ object.zendesk_reference_number }}</strong> | ||
Your reference number is {{ object.zendesk_reference_number }} | ||
</div> | ||
</div> | ||
|
||
{% if object.journey == object.JOURNEY_TOOLS_ACCESS %} | ||
<p class="govuk-body">You've requested access to our <a href="{% url 'applications:tools' %}">tools.</a></p> | ||
{% elif object.journey == object.JOURNEY_DATASET_ACCESS %} | ||
<p class="govuk-body">You've requested access to <a href="{{ catalogue_item.get_absolute_url }}">{{ catalogue_item }}.</a></p> | ||
{% else %} | ||
<p class="govuk-body">You've requested access to STATA.</p> | ||
{% endif %} | ||
|
||
<h2 class="govuk-heading-m">Next steps</h2> | ||
<p class="govuk-body"> | ||
{% if object.journey == object.JOURNEY_TOOLS_ACCESS %} | ||
We will respond within 5 working days. After we have validated your screenshot we'll delete it. | ||
{% else %} | ||
We will respond within 5 working days. | ||
{% endif %} | ||
</p> | ||
<div class="govuk-!-padding-top-3"> | ||
{% if object.journey == object.JOURNEY_TOOLS_ACCESS %} | ||
<p class="govuk-body">You've requested access to our <a href="{% url 'applications:tools' %}">tools.</a></p> | ||
{% elif object.journey == object.JOURNEY_DATASET_ACCESS %} | ||
<p class="govuk-body">You've requested access to <a href="{{ catalogue_item.get_absolute_url }}">{{ catalogue_item }}.</a></p> | ||
{% else %} | ||
<p class="govuk-body">You've requested access to STATA.</p> | ||
{% endif %} | ||
</div> | ||
<div class="govuk-!-padding-top-3"> | ||
<h2 class="govuk-heading-l govuk-!-font-weight-regular">What happens next</h2> | ||
</div> | ||
<p class="govuk-body"> | ||
If you have any questions, contact | ||
<a class="govuk-link" | ||
href="mailto:data-workspace+id{{ object.zendesk_reference_number }}@uktrade.zendesk.com">data-workspace+id{{ object.zendesk_reference_number }}@uktrade.zendesk.com</a> | ||
Our Service Level Agreement (SLA) commits us to respond within 5 days. However, we usually respond much faster. | ||
</p> | ||
<p class="govuk-body">In the meantime you can:</p> | ||
<ul class="govuk-list govuk-list--bullet"> | ||
<li> | ||
<a href="/">search our data</a> to find relevant datasets for your work. | ||
</li> | ||
<li> | ||
join the | ||
<a href="https://teams.microsoft.com/dl/launcher/launcher.html?url=%2F_%23%2Fl%2Fteam%2F19%3Ac1f08445f252403982e22a387b30b4ca%40thread.skype%2Fconversations%3FgroupId%3D748264d0-f2a0-4e13-afa0-22c152ea7cb9%26tenantId%3D8fa217ec-33aa-46fb-ad96-dfe68006bb86&type=team&deeplinkId=87aab110-11a4-4caf-860d-3610d220f5fa&directDl=true&msLaunch=true&enableMobilePage=true&suppressPrompt=true" | ||
class="govuk-link">Data Workspace Community</a> | ||
for help, support and advice. | ||
</li> | ||
</ul> | ||
|
||
<h2 class="govuk-heading-m">Give feedback on requesting access to tools</h2> | ||
|
||
<p class="govuk-body"> | ||
<a href="{% url 'feedback' %}" class="govuk-link">What did you think of this service?</a> | ||
(short survey with 4 questions) | ||
You'll get an email when a decision is made on your access request. | ||
</p> | ||
<div class="govuk-!-padding-top-3"> | ||
<p class="govuk-body-m"> | ||
<a class="govuk-link" href="{% url 'root' %}">Return home</a> | ||
</p> | ||
</div> | ||
</div> | ||
</div> | ||
{% endblock %} |