Files
notifications-admin/app/templates/views/platform-admin/_base_template.html
Jonathan Bobel 348e29fb40 - Removed links to the gov uk stylesheets
- Deleted /stylesheets folder
- Removed sass build from gulpfile
- Changed gov links to usa links
- Changed other govuk styles, like breadcrumbs
- Changed name of uk_components file to us_components
- Fixed a few tests that broke on account of the changes
2023-08-08 16:19:17 -04:00

50 lines
2.0 KiB
HTML

{% extends "withoutnav_template.html" %}
{% from "components/page-footer.html" import page_footer %}
{% block main %}
<div class="govuk-width-container {{ mainClasses }}">
<div class="navigation-service usa-breadcrumb">
<div class="navigation-service usa-breadcrumb-name govuk-!-font-weight-bold">
Platform admin
</div>
<a href="{{ url_for('main.choose_account') }}" class="usa-link navigation-service usa-breadcrumb-switch">Switch service</a>
</div>
<div class="grid-row">
<div class="tablet:grid-col-2">
<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')),
('Organizations', url_for('main.organizations')),
('Providers', url_for('main.view_providers')),
('Reports', url_for('main.platform_admin_reports')),
('Email branding', url_for('main.email_branding')),
('Inbound SMS numbers', url_for('main.inbound_sms_admin')),
('Find services by name', url_for('main.find_services_by_name')),
('Find users by email', url_for('main.find_users_by_email')),
('Email complaints', url_for('main.platform_admin_list_complaints')),
('Clear cache', url_for('main.clear_cache')),
] %}
<li>
<a class="usa-link" href="{{ url }}">
{{ link_text }}
</a>
</li>
{% endfor %}
</nav>
</div>
<div class="grid-col-10 tablet:grid-col-10">
{% block backLink %}{% endblock %}
<main class="govuk-main-wrapper column-main govuk-!-padding-top-0 govuk-!-padding-bottom-0" id="main-content" role="main">
{% block content %}
{% include 'flash_messages.html' %}
{% block platform_admin_content %}{% endblock %}
{% endblock %}
</main>
</div>
</div>
</div>
{% endblock %}