mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-24 12:21:22 -05:00
37 lines
1.1 KiB
HTML
37 lines
1.1 KiB
HTML
{% extends "withoutnav_template.html" %}
|
|
{% from "components/textbox.html" import textbox %}
|
|
{% from "components/checkbox.html" import checkbox %}
|
|
{% from "components/page-footer.html" import page_footer %}
|
|
|
|
{% block maincolumn_content %}
|
|
|
|
<div class="grid-row">
|
|
<div class="column-one-quarter">
|
|
<p class="heading-medium">
|
|
Platform admin
|
|
</p>
|
|
<nav class="navigation">
|
|
{% for link_text, url in [
|
|
('Summary', url_for('main.platform_admin')),
|
|
('Live services', url_for('main.live_services')),
|
|
('Trial mode services', url_for('main.trial_services')),
|
|
('Providers', url_for('main.view_providers')),
|
|
('Organisations', url_for('main.organisations')),
|
|
('Letter jobs', url_for('main.letter_jobs')),
|
|
('Inbound SMS numbers', url_for('main.inbound_sms_admin'))
|
|
] %}
|
|
<li>
|
|
<a href="{{ url }}">
|
|
{{ link_text }}
|
|
</a>
|
|
</li>
|
|
{% endfor %}
|
|
</nav>
|
|
</div>
|
|
<div class="column-three-quarters">
|
|
{% block platform_admin_content %}{% endblock %}
|
|
</div>
|
|
</div>
|
|
|
|
{% endblock %}
|