mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-28 06:11:03 -05:00
Because only services with bills to pay are included, and we started including billing details. Also rename endpoints and file names to match this.
23 lines
742 B
HTML
23 lines
742 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.get_billing_report') }}">Billing Report</a>
|
|
</p>
|
|
{% endblock %}
|