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

47 lines
1010 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
2017-02-13 10:45:15 +00:00
{% block service_page_title %}
Delete service
2016-01-07 12:29:56 +00:00
{% endblock %}
{% block maincolumn_content %}
2016-01-22 14:38:10 +00:00
2016-01-07 16:24:43 +00:00
<div class="grid-row">
<div class="column-three-quarters">
2016-01-07 12:29:56 +00:00
<h1 class="heading-large">Delete this service from GOV.UK Notify</h1>
2016-01-22 14:38:10 +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>
2016-01-22 14:38:10 +00:00
the history of notifications youve sent
2016-01-07 16:24:43 +00:00
</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">
2016-01-07 20:11:22 +00:00
{{ page_footer(
'Yes, delete {}'.format(current_service.name),
2016-01-07 16:24:43 +00:00
destructive=True,
back_link=url_for('.service_settings', service_id=current_service.id)
2016-01-07 16:24:43 +00:00
) }}
</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 %}