Files
notifications-admin/app/templates/views/service-settings/status.html
Chris Hill-Scott 3989d1b576 Add pages for ‘service settings’ flow
Adds the pages and wires them together, so that it’s possible to click
through them.

The wording is not quite English, but attempts to be an rough description of
what the consequences are for each of the four actions.
2016-01-08 14:56:14 +00:00

34 lines
737 B
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 "withnav_template.html" %}
{% from "components/submit-form.html" import submit_form %}
{% block page_title %}
GOV.UK Notify | Service settings
{% endblock %}
{% block maincolumn_content %}
<div class="grid-row">
<div class="column-two-thirds">
<h1 class="heading-xlarge">Suspend your service</h1>
<p>
Suspending a service means it wont send messages. Any messages that are
already queued will still be sent.
</p>
<p>
You can undo this at any time.
</p>
<form method="post">
{{ submit_form('Suspend') }}
</form>
<p><a href="{{ url_for('.service_settings') }}">Back to service settings</a></p>
</div>
</div>
{% endblock %}