Files
notifications-admin/app/templates/views/support/index.html
Chris Hill-Scott 1df3c11ae9 Split support into two pages
The kind of communications we’re getting at the moment can broadly be
broken down into:
- problems
- questions and feedback

We will need to triage problems differently, because they could
potentially be urgent/severe/emergency/P1/whatever language we use.
Questions or feedback will never be P1.

Two reasons for making the user categorise their tickets themselves:

- Outside of hours we can’t get someone out of bed in order to decide if
  a ticket is a problem or just feedback

- We can tailor the subsequent pages to whether it’s a problem or
  feedback (eg showing a link to the status page if the user is having
  a problem)

This commit let’s users make the choice with a pair of radio buttons.

It also cleans up a bunch of the tests and parameterizes them so we’re
testing the flow for both ticket types.
2017-02-02 15:18:40 +00:00

84 lines
2.4 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/radios.html" import radios %}
{% from "components/page-footer.html" import page_footer %}
{% block page_title %}
Support GOV.UK Notify
{% endblock %}
{% block maincolumn_content %}
<h1 class="heading-large">
Support
</h1>
<div class="grid-row">
<div class="column-two-thirds">
<form method="post" class="bottom-gutter-2">
{{ radios(form.support_type) }}
{{ page_footer('Next') }}
</form>
<h2 class="heading-medium">
Support process
</h2>
<p>
If you have a problem, first check for known issues on the
GOV.UK Notify <a href="https://status.notifications.service.gov.uk">system status page</a>.
Subscribe to get alerts on the progress of any listed issue.
</p>
<h2 class="heading-small">
During office hours
</h2>
<p>
Our office hours are 9.30am to 5.30pm, Monday to Friday.
</p>
<p>
Well reply within 30 minutes whether youre
reporting a problem or just asking a question.
</p>
<p>
The team are also available to answer questions on the
<a href="https://ukgovernmentdigital.slack.com/messages/govuk-notify">cross-government Slack channel</a>.
</p>
<h2 class="heading-small">
Out of hours support
</h2>
<p>
We offer 24 hour online support if you have a GOV.UK Notify
account and weve made your service live. We have different
response times depending on whether the problem you want to
report is an emergency.
</p>
<p>
Its only an emergency if:
</p>
<ul class="list list-bullet">
<li>
no one in your team can log in
</li>
<li>
a technical difficulties error appears when you try to
upload a file
</li>
<li>
a 500 response code appears when you try to send messages
using the API
</li>
</ul>
<p>
Well reply within 30 minutes and give you hourly updates
until the problems fixed.
</p>
<p>
Well reply by the next working day for any other problems.
</p>
</div>
</div>
{% endblock %}