mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-09-06 14:38:25 -04:00
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
This commit is contained in:
@@ -9,19 +9,25 @@
|
||||
|
||||
{% block maincolumn_content %}
|
||||
|
||||
<h1 class="heading-large">Support</h1>
|
||||
<p>We provide 24-hour online support for teams with a live service on GOV.UK Notify.</p>
|
||||
|
||||
{% call form_wrapper() %}
|
||||
{% if current_user.is_authenticated %}
|
||||
{{ radios(form.support_type) }}
|
||||
{% else %}
|
||||
<p class="govuk-body">
|
||||
What do you need help with?
|
||||
</p>
|
||||
{{ radios(form.who, hide_legend=True) }}
|
||||
{% endif %}
|
||||
{{ page_footer('Continue') }}
|
||||
{% endcall %}
|
||||
|
||||
<p>You can also <a class="govuk-link govuk-link--no-visited-state" href="https://ukgovernmentdigital.slack.com/messages/C0E1ADVPC">contact us on Slack</a>.</p>
|
||||
|
||||
<div class="govuk-grid-row">
|
||||
<div class="govuk-grid-column-two-thirds">
|
||||
|
||||
<h1 class="heading-large">Support</h1>
|
||||
<p>We provide 24-hour online support for teams with a live service on GOV.UK Notify.</p>
|
||||
|
||||
{% call form_wrapper(class="bottom-gutter-2") %}
|
||||
{{ radios(form.support_type) }}
|
||||
{{ page_footer('Continue') }}
|
||||
{% endcall %}
|
||||
|
||||
<p>You can also <a class="govuk-link govuk-link--no-visited-state" href="https://ukgovernmentdigital.slack.com/messages/C0E1ADVPC">contact us on Slack</a>.</p>
|
||||
|
||||
<h2 class="heading-medium">Office hours</h2>
|
||||
<p>Our office hours are 9:30am to 5:30pm, Monday to Friday.</p>
|
||||
<p>When you report a problem in office hours, we’ll aim to read it within 30 minutes and reply within one working day.</p>
|
||||
|
||||
Reference in New Issue
Block a user