2018-02-13 14:49:03 +00:00
|
|
|
|
{% extends "admin_template.html" %}
|
|
|
|
|
|
|
|
|
|
|
|
{% block per_page_title %}
|
2018-02-14 16:13:11 +00:00
|
|
|
|
{% block org_page_title %}{% endblock %} – {{ current_org.name }}
|
2018-02-13 14:49:03 +00:00
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
2019-10-11 16:44:17 +01:00
|
|
|
|
{% block main %}
|
|
|
|
|
|
<div class="govuk-width-container">
|
2018-02-13 14:49:03 +00:00
|
|
|
|
<div class="navigation-service">
|
2019-06-21 14:12:19 +01:00
|
|
|
|
{% if current_user.platform_admin %}
|
2020-04-23 11:08:43 +01:00
|
|
|
|
<a href="{{ url_for('.organisations') }}" class="govuk-link govuk-link--no-visited-state navigation-organisation-link">Organisations</a>
|
2019-06-21 14:12:19 +01:00
|
|
|
|
{% endif %}
|
2019-12-11 20:33:57 +00:00
|
|
|
|
<div class="navigation-service-name govuk-!-font-weight-bold">
|
2018-02-13 16:40:04 +00:00
|
|
|
|
{{ current_org.name }}
|
2018-02-13 14:49:03 +00:00
|
|
|
|
</div>
|
2019-12-06 07:53:46 +00:00
|
|
|
|
<a href="{{ url_for('main.choose_account') }}" class="govuk-link govuk-link--no-visited-state navigation-service-switch">Switch service</a>
|
2018-02-13 14:49:03 +00:00
|
|
|
|
</div>
|
2020-02-19 11:57:15 +00:00
|
|
|
|
<div class="govuk-grid-row govuk-!-padding-bottom-12">
|
2020-02-19 12:53:59 +00:00
|
|
|
|
<div class="govuk-grid-column-one-quarter">
|
2018-02-13 14:49:03 +00:00
|
|
|
|
{% include "org_nav.html" %}
|
|
|
|
|
|
</div>
|
2020-02-20 16:55:56 +00:00
|
|
|
|
<div class="govuk-grid-column-three-quarters">
|
2019-10-11 16:44:17 +01:00
|
|
|
|
{% block beforeContent %}{% endblock %}
|
2019-10-14 16:23:53 +01:00
|
|
|
|
<main class="govuk-main-wrapper column-main govuk-!-padding-top-0 govuk-!-padding-bottom-0" id="main-content" role="main" >
|
2019-10-11 16:44:17 +01:00
|
|
|
|
{% block content %}
|
|
|
|
|
|
{% include 'flash_messages.html' %}
|
|
|
|
|
|
{% block maincolumn_content %}{% endblock %}
|
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
</main>
|
|
|
|
|
|
</div>
|
2018-02-13 14:49:03 +00:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
|
|
|
|
|
{% endblock %}
|