mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-10 13:23:40 -05:00
39 lines
1.1 KiB
HTML
39 lines
1.1 KiB
HTML
{% extends "views/platform-admin/_base_template.html" %}
|
|
|
|
{% block per_page_title %}
|
|
Reports
|
|
{% endblock %}
|
|
|
|
{% block platform_admin_content %}
|
|
|
|
<h1 class="font-body-2xl">
|
|
Reports
|
|
</h1>
|
|
|
|
<p>
|
|
<a class="usa-link" target="_blank" href="{{ url_for('main.live_services_csv') }}">Download live services csv report</a>
|
|
</p>
|
|
<p>
|
|
<a class="usa-link" href="{{ url_for('main.notifications_sent_by_service') }}">Monthly notification statuses for live services</a>
|
|
</p>
|
|
<p>
|
|
<a class="usa-link" href="{{ url_for('main.get_billing_report') }}">Billing Report</a>
|
|
</p>
|
|
<p>
|
|
<a class="usa-link" href="{{ url_for('main.get_volumes_by_service') }}">Volumes by service Report</a>
|
|
</p>
|
|
<p>
|
|
<a class="usa-link" href="{{ url_for('main.get_daily_volumes') }}">Daily volumes Report</a>
|
|
</p>
|
|
<p>
|
|
<a class="usa-link" href="{{ url_for('main.get_daily_sms_provider_volumes') }}">Daily SMS provider volumes Report</a>
|
|
</p>
|
|
<p>
|
|
<a class="usa-link" href="{{ url_for('main.get_users_report') }}">Users Report</a>
|
|
</p>
|
|
<p>
|
|
<a class="usa-link" href="{{ url_for('main.download_all_users') }}">Download All Users</a>
|
|
</p>
|
|
|
|
{% endblock %}
|