mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-06-03 04:50:10 -04:00
This commit modifies the HTML `<title>` tags for all the pages. It makes two main changes: - make the title tag match the `<h1>` of the page, for better or worse - put the service name after the page title, seperated by an en dash, as per GOV.UK
47 lines
1004 B
HTML
47 lines
1004 B
HTML
{% extends "withnav_template.html" %}
|
||
{% from "components/page-footer.html" import page_footer %}
|
||
|
||
{% block page_title %}
|
||
Delete service – GOV.UK Notify
|
||
{% endblock %}
|
||
|
||
{% block maincolumn_content %}
|
||
|
||
|
||
|
||
<div class="grid-row">
|
||
<div class="column-three-quarters">
|
||
|
||
<h1 class="heading-large">Delete this service from GOV.UK Notify</h1>
|
||
|
||
<p>
|
||
This can’t be undone. You will lose:
|
||
</p>
|
||
|
||
<ul class="list list-bullet">
|
||
<li>
|
||
any data you’ve uploaded messages
|
||
</li>
|
||
<li>
|
||
any templates you’ve created
|
||
</li>
|
||
<li>
|
||
the history of notifications you’ve sent
|
||
</li>
|
||
<li>
|
||
API keys
|
||
</li>
|
||
</ul>
|
||
|
||
<form method="post">
|
||
{{ page_footer(
|
||
'Yes, delete ‘{}’'.format(service.name),
|
||
destructive=True,
|
||
back_link=url_for('.service_settings', service_id=service_id)
|
||
) }}
|
||
</form>
|
||
|
||
</div>
|
||
</div>
|
||
{% endblock %}
|