mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-03-01 23:01:00 -05:00
This commit does two things: - brings the ‘All organisations’ page back within the platform admin part of the site (because it’s hard to find otherwise) - makes the layouts of all the pages within platform admin a bit closer to the service-specific pages in terms of heading sizes, spacing, etc so that moving between them doesn’t feel so jumpy
18 lines
362 B
HTML
18 lines
362 B
HTML
{% extends "views/platform-admin/_base_template.html" %}
|
|
|
|
{% block per_page_title %}
|
|
Summary
|
|
{% endblock %}
|
|
|
|
{% block platform_admin_content %}
|
|
|
|
<h1 class="heading-medium">
|
|
Summary
|
|
</h1>
|
|
|
|
<p class="govuk-body">
|
|
<a class="govuk-link govuk-link--no-visited-state" href="{{ url_for('main.platform_admin') }}">Load summary</a>
|
|
</p>
|
|
|
|
{% endblock %}
|