mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-08-25 00:33:58 -04:00
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.
34 lines
737 B
HTML
34 lines
737 B
HTML
{% 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 won’t 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 %}
|