mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-03-24 04:02:54 -04:00
Includes: - turning off :visited styles to match existing design - swapping heading classes used to make links bold for the GOVUK Frontend bold override class - adding visually hidden text to some links to make them work when isolated from their context We may need to revisit whether some links, such as those for documentation and features, may benefit from having some indication that their target has been visited.
28 lines
878 B
HTML
28 lines
878 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 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>
|
|
<a class="govuk-link govuk-link--no-visited-state" target="_blank" href="{{ url_for('main.performance_platform_xlsx') }}">Download performance platform report (.xlsx)</a>
|
|
<p>
|
|
|
|
<p>
|
|
<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>
|
|
<a class="govuk-link govuk-link--no-visited-state" href="{{ url_for('main.usage_for_all_services') }}">Usage for all services</a>
|
|
</p>
|
|
{% endblock %}
|