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 %}
|
2016-02-08 09:23:51 +00:00
|
|
|
|
Temporrily suspend API keys – GOV.UK Notify
|
2016-01-07 12:29:56 +00:00
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
|
|
|
2016-02-02 14:05:45 +00:00
|
|
|
|
<h1 class="heading-large">Temporarily suspend API keys</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>
|
2016-01-08 17:17:34 +00:00
|
|
|
|
You’ll still be able to send notifications to yourself by uploading a
|
|
|
|
|
|
CSV file.
|
2016-01-07 12:29:56 +00:00
|
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
|
|
<p>
|
2016-01-08 17:17:34 +00:00
|
|
|
|
You can start sending notifications again when you’re ready.
|
2016-01-07 12:29:56 +00:00
|
|
|
|
</p>
|
|
|
|
|
|
|
|
|
|
|
|
<form method="post">
|
2016-01-07 20:11:22 +00:00
|
|
|
|
{{ page_footer(
|
2016-02-05 10:24:43 +00:00
|
|
|
|
'Suspend API keys',
|
2016-01-07 16:24:43 +00:00
|
|
|
|
destructive=True,
|
2016-04-04 16:53:52 +01:00
|
|
|
|
back_link=url_for('.service_settings', service_id=current_service.id),
|
2016-02-05 10:24:43 +00:00
|
|
|
|
back_link_text='Back to settings'
|
2016-01-07 16:24:43 +00:00
|
|
|
|
) }}
|
2016-01-07 12:29:56 +00:00
|
|
|
|
</form>
|
|
|
|
|
|
|
|
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|