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

44 lines
927 B
HTML
Raw Normal View History

2016-01-07 12:29:56 +00:00
{% extends "withnav_template.html" %}
{% from "components/submit-form.html" import submit_form %}
{% block page_title %}
GOV.UK Notify | Service settings
{% endblock %}
{% block maincolumn_content %}
2016-01-07 16:24:43 +00:00
<div class="grid-row">
<div class="column-three-quarters">
<h1 class="heading-xlarge">Delete service</h1>
2016-01-07 12:29:56 +00:00
2016-01-07 16:24:43 +00:00
<p>
This cant be undone. You will lose:
</p>
2016-01-07 12:29:56 +00:00
2016-01-07 16:24:43 +00:00
<ul class="list list-bullet">
<li>
any data youve uploaded messages
</li>
<li>
any templates youve created
</li>
<li>
the history of
</li>
<li>
API keys
</li>
</ul>
2016-01-07 12:29:56 +00:00
2016-01-07 16:24:43 +00:00
<form method="post">
{{ submit_form(
'Yes, delete {}'.format(service.name),
destructive=True,
back_link=url_for('.service_settings')
) }}
</form>
2016-01-07 12:29:56 +00:00
2016-01-07 16:24:43 +00:00
</div>
</div>
2016-01-07 12:29:56 +00:00
{% endblock %}