Merge pull request #2934 from alphagov/live-services-csv

Add Live services and Performance platform csv reports
This commit is contained in:
Pea (Malgorzata Tyczynska)
2019-05-01 16:20:53 +01:00
committed by GitHub
7 changed files with 195 additions and 1 deletions

View File

@@ -17,6 +17,7 @@
('Trial mode services', url_for('main.trial_services')),
('Organisations', url_for('main.organisations')),
('Providers', url_for('main.view_providers')),
('Reports', url_for('main.platform_admin_reports')),
('Email branding', url_for('main.email_branding')),
('Letter branding', url_for('main.letter_branding')),
('Inbound SMS numbers', url_for('main.inbound_sms_admin')),

View File

@@ -0,0 +1,20 @@
{% 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_csv') }}">Download performance platform csv report</a>
<p>
{% endblock %}