New report on platform-admin/reports page to get the usage for all services.

This commit is contained in:
Rebecca Law
2019-08-23 17:14:04 +01:00
parent 983a1dc931
commit 2fe5c4a96e
6 changed files with 112 additions and 0 deletions

View File

@@ -21,4 +21,7 @@
<p>
<a href="{{ url_for('main.notifications_sent_by_service') }}">Monthly notification statuses for live services</a>
<p>
<p>
<a href="{{ url_for('main.usage_for_all_services') }}">Usage for all services</a>
</p>
{% endblock %}

View File

@@ -0,0 +1,20 @@
{% extends "views/platform-admin/_base_template.html" %}
{% from "components/form.html" import form_wrapper %}
{% block per_page_title %}
Usage for all services
{% endblock %}
{% block platform_admin_content %}
<h1 class="heading-large">
Usage for all services
</h1>
{% call form_wrapper() %}
{{ textbox(form.start_date, hint="Enter start date in format YYYY-MM-DD") }}
{{ textbox(form.end_date, hint="Enter end date in format YYYY-MM-DD") }}
{{ page_footer('Download report') }}
{% endcall %}
{% endblock %}