Files
notifications-admin/app/templates/views/service-settings/status.html
T

38 lines
819 B
HTML
Raw Normal View History

2016-01-07 12:29:56 +00:00
{% extends "withnav_template.html" %}
2016-01-07 20:11:22 +00:00
{% from "components/page-footer.html" import page_footer %}
2016-01-07 12:29:56 +00:00
{% block page_title %}
GOV.UK Notify | Service settings
{% endblock %}
{% block maincolumn_content %}
<h1 class="heading-xlarge">Turn off all outgoing notifications</h1>
2016-01-07 16:24:43 +00:00
2016-01-07 12:29:56 +00:00
<div class="grid-row">
2016-01-07 16:24:43 +00:00
<div class="column-three-quarters">
2016-01-07 12:29:56 +00:00
<p>
Youll still be able to send notifications to yourself by uploading a
CSV file.
2016-01-07 12:29:56 +00:00
</p>
<p>
You can start sending notifications again when youre ready.
2016-01-07 12:29:56 +00:00
</p>
<form method="post">
2016-01-07 20:11:22 +00:00
{{ page_footer(
'Turn off all outgoing notifications',
2016-01-07 16:24:43 +00:00
destructive=True,
back_link=url_for('.service_settings', service_id=service_id)
2016-01-07 16:24:43 +00:00
) }}
2016-01-07 12:29:56 +00:00
</form>
</div>
</div>
{% endblock %}