mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-25 21:00:47 -05:00
All paragraphs should have class="govuk-body", or be otherwise custom-styled. This commit adds some extra checks to our test fixture that looks for paragraphs that don’t have any styling. Our test coverage is pretty good, so this should check almost all pages, and prevent regressions. I’ve done this in such a way that it can be extended for other elements (e.g. links) in the future.
49 lines
2.0 KiB
HTML
49 lines
2.0 KiB
HTML
{% extends "withoutnav_template.html" %}
|
||
{% from "components/radios.html" import radios %}
|
||
{% from "components/page-footer.html" import page_footer %}
|
||
{% from "components/form.html" import form_wrapper %}
|
||
|
||
{% block per_page_title %}
|
||
Support
|
||
{% endblock %}
|
||
|
||
{% block maincolumn_content %}
|
||
|
||
<h1 class="heading-large">Support</h1>
|
||
<p class="govuk-body">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 class="govuk-body">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">
|
||
<h2 class="heading-medium">Office hours</h2>
|
||
<p class="govuk-body">Our office hours are 9:30am to 5:30pm, Monday to Friday.</p>
|
||
<p class="govuk-body">When you report a problem in office hours, we’ll aim to read it within 30 minutes and reply within one working day.</p>
|
||
|
||
<h2 class="heading-medium">Out-of-hours</h2>
|
||
<p class="govuk-body">Outside office hours, response times depend on whether you’re reporting an emergency.</p>
|
||
<p class="govuk-body">If it’s an emergency, we’ll reply within 30 minutes and update you every hour until the problem’s fixed.</p>
|
||
<p class="govuk-body">If your problem is not an emergency, we’ll reply within one working day.</p>
|
||
<p class="govuk-body">A problem is only classed as an emergency if:</p>
|
||
<ul class="list list-bullet">
|
||
<li>nobody on your team can sign 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>
|
||
</div>
|
||
</div>
|
||
|
||
{% endblock %}
|