mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-07-14 18:30:15 -04:00
We used to upload this to performance platform to show the list of services and organisations. There is no longer a performance platform to upload this file to.
23 lines
754 B
HTML
23 lines
754 B
HTML
{% extends "views/platform-admin/_base_template.html" %}
|
|
|
|
{% block per_page_title %}
|
|
Platform admin
|
|
{% endblock %}
|
|
|
|
{% block platform_admin_content %}
|
|
|
|
<h1 class="heading-medium">
|
|
Reports
|
|
</h1>
|
|
|
|
<p class="govuk-body">
|
|
<a class="govuk-link govuk-link--no-visited-state" target="_blank" href="{{ url_for('main.live_services_csv') }}">Download live services csv report</a>
|
|
</p>
|
|
<p class="govuk-body">
|
|
<a class="govuk-link govuk-link--no-visited-state" href="{{ url_for('main.notifications_sent_by_service') }}">Monthly notification statuses for live services</a>
|
|
</p>
|
|
<p class="govuk-body">
|
|
<a class="govuk-link govuk-link--no-visited-state" href="{{ url_for('main.usage_for_all_services') }}">Usage for all services</a>
|
|
</p>
|
|
{% endblock %}
|