Files
notifications-admin/app/templates/views/support/public.html
Chris Hill-Scott 61ab9661fb Direct members of the public somewhere more useful
We can’t give advice to members of the public, but increasingly we’re
seeing them try to use our support form to ask.

It would be better for them if we can direct them straight to somewhere
more useful, before they have the chance to raise a support ticket.

This commit replaces the report a problem/ask a question triaging for
users who aren’t signed in. It’s not possible for non-signed-in users to
raise an priority 1 ticket, so we never need to triage the tickets in
this way.

Instead we can triage people based on whether they work in the public
sector or not. If they do then we send them on to the feedback form. If
not then they go to a new page which contains some useful links. We’ve
chosen these links based on some analysis of the support tickets we’ve
received recently[1]

1. https://docs.google.com/spreadsheets/d/1uBQn-ZnCYfz6ltFaUKZpytgvBF0-MeshCLZ1cD74R0c/edit?usp=sharing
2020-03-24 17:48:11 +00:00

49 lines
1.6 KiB
HTML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
{% extends "withoutnav_template.html" %}
{% from "components/page-header.html" import page_header %}
{% block per_page_title %}
The GOV.UK Notify team cant give advice to members of the public
{% endblock %}
{% block maincolumn_content %}
<div class="govuk-grid-row">
<div class="govuk-grid-column-two-thirds">
{{ page_header(
'The GOV.UK Notify service is for people who work in the government',
back_link=url_for('.support')
) }}
<p class="govuk-body">
We cant give advice to the public. We dont have access to information about you held by government departments.
</p>
<p class="govuk-body">
There are other pages on GOV.UK where you can get help:
</p>
<h2 class="govuk-heading-m govuk-!-margin-bottom-1">
<a class="govuk-link govuk-link--no-visited-state" href="https://www.gov.uk/coronavirus">Coronavirus (COVID-19)</a>
</h2>
<p class="govuk-body">
What you need to do
</p>
<h2 class="govuk-heading-m govuk-!-margin-bottom-1">
<a class="govuk-link govuk-link--no-visited-state" href="https://www.gov.uk/contact">Contact the government</a>
</h2>
<p class="govuk-body">
Ask about benefits, driving, transport, tax, and more
</p>
<h2 class="govuk-heading-m govuk-!-margin-bottom-1">
<a class="govuk-link govuk-link--no-visited-state" href="https://www.gov.uk/report-suspicious-emails-websites-phishing">Avoid and report internet scams and phishing</a>
</h2>
<p class="govuk-body">
Advice on suspicious emails and text messages
</p>
</div>
</div>
{% endblock %}