Files
notifications-admin/app/templates/views/platform-admin/reports.html
Katie Smith 9dc13f1d8e Add new report to show monthly notification stats for each service
This report will be used by the engagement team. There is a form to give
a start and end date for the report, and the form is then downloaded
as a CSV file when the form is submitted.
2019-07-23 11:32:28 +01:00

25 lines
593 B
HTML

{% extends "views/platform-admin/_base_template.html" %}
{% block per_page_title %}
Platform admin
{% endblock %}
{% block platform_admin_content %}
<h1 class="heading-large">
Reports
</h1>
<p>
<a target="_blank" href="{{ url_for('main.live_services_csv') }}">Download live services csv report</a>
</p>
<p>
<a target="_blank" href="{{ url_for('main.performance_platform_xlsx') }}">Download performance platform report (.xlsx)</a>
<p>
<p>
<a href="{{ url_for('main.notifications_sent_by_service') }}">Monthly notification statuses for live services</a>
<p>
{% endblock %}