2017-07-21 10:30:55 +01:00
|
|
|
{% extends "withoutnav_template.html" %}
|
|
|
|
|
{% from "components/page-footer.html" import page_footer %}
|
|
|
|
|
|
|
|
|
|
|
2020-04-23 11:08:43 +01:00
|
|
|
{% block beforeContent %}
|
|
|
|
|
<div class="navigation-service">
|
|
|
|
|
<div class="navigation-service-name govuk-!-font-weight-bold">
|
|
|
|
|
Platform admin
|
|
|
|
|
</div>
|
|
|
|
|
<a href="{{ url_for('main.choose_account') }}" class="govuk-link govuk-link--no-visited-state navigation-service-switch">Switch service</a>
|
|
|
|
|
</div>
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
{% block content %}
|
2020-02-19 11:57:15 +00:00
|
|
|
<div class="govuk-grid-row">
|
2020-02-19 12:53:59 +00:00
|
|
|
<div class="govuk-grid-column-one-quarter">
|
2017-07-21 10:30:55 +01:00
|
|
|
<nav class="navigation">
|
2018-02-08 12:17:23 +00:00
|
|
|
{% for link_text, url in [
|
2017-07-21 10:30:55 +01:00
|
|
|
('Summary', url_for('main.platform_admin')),
|
|
|
|
|
('Live services', url_for('main.live_services')),
|
|
|
|
|
('Trial mode services', url_for('main.trial_services')),
|
2020-04-23 11:08:43 +01:00
|
|
|
('Organisations', url_for('main.organisations')),
|
2017-07-21 10:30:55 +01:00
|
|
|
('Providers', url_for('main.view_providers')),
|
2019-04-24 10:27:57 +01:00
|
|
|
('Reports', url_for('main.platform_admin_reports')),
|
2018-02-07 10:30:49 +00:00
|
|
|
('Email branding', url_for('main.email_branding')),
|
2019-02-07 16:16:22 +00:00
|
|
|
('Letter branding', url_for('main.letter_branding')),
|
2018-06-06 15:22:48 +01:00
|
|
|
('Inbound SMS numbers', url_for('main.inbound_sms_admin')),
|
2019-08-13 16:25:26 +01:00
|
|
|
('Find services by name', url_for('main.find_services_by_name')),
|
2018-07-06 11:10:14 +01:00
|
|
|
('Find users by email', url_for('main.find_users_by_email')),
|
2020-04-23 11:08:43 +01:00
|
|
|
('Email complaints', url_for('main.platform_admin_list_complaints')),
|
2018-09-06 16:34:23 +01:00
|
|
|
('Returned letters', url_for('main.platform_admin_returned_letters')),
|
2019-02-15 10:27:38 +00:00
|
|
|
('Clear cache', url_for('main.clear_cache')),
|
2017-07-21 10:30:55 +01:00
|
|
|
] %}
|
|
|
|
|
<li>
|
2019-12-06 07:53:46 +00:00
|
|
|
<a class="govuk-link govuk-link--no-visited-state" href="{{ url }}">
|
2017-07-21 10:30:55 +01:00
|
|
|
{{ link_text }}
|
|
|
|
|
</a>
|
|
|
|
|
</li>
|
|
|
|
|
{% endfor %}
|
|
|
|
|
</nav>
|
|
|
|
|
</div>
|
2020-04-23 11:08:43 +01:00
|
|
|
<div class="govuk-grid-column-three-quarters column-main">
|
|
|
|
|
{% include 'flash_messages.html' %}
|
2017-07-21 10:30:55 +01:00
|
|
|
{% block platform_admin_content %}{% endblock %}
|
|
|
|
|
</div>
|
|
|
|
|
</div>
|
|
|
|
|
|
|
|
|
|
{% endblock %}
|