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

47 lines
1010 B
HTML
Raw Normal View History

{% extends "withnav_template.html" %}
{% from "components/page-footer.html" import page_footer %}
{% block service_page_title %}
Delete service
{% endblock %}
{% block maincolumn_content %}
2016-01-22 14:38:10 +00:00
<div class="grid-row">
<div class="column-three-quarters">
<h1 class="heading-large">Delete this service from GOV.UK Notify</h1>
2016-01-22 14:38:10 +00:00
<p>
This cant be undone. You will lose:
</p>
<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
</li>
<li>
API keys
</li>
</ul>
<form method="post">
{{ page_footer(
'Yes, delete {}'.format(current_service.name),
destructive=True,
back_link=url_for('.service_settings', service_id=current_service.id)
) }}
</form>
</div>
</div>
{% endblock %}