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 %}
|
|
|
|
|
|
<a href="{{ url_for('.organisations') }}" class="navigation-organisation-link">All organisations</a>
|
|
|
|
|
|
{% endif %}
|
2018-02-13 14:49:03 +00:00
|
|
|
|
<div class="navigation-service-name">
|
2018-02-13 16:40:04 +00:00
|
|
|
|
{{ current_org.name }}
|
2018-02-13 14:49:03 +00:00
|
|
|
|
</div>
|
2018-03-08 16:51:53 +00:00
|
|
|
|
<a href="{{ url_for('main.choose_account') }}" class="navigation-service-switch">Switch service</a>
|
2018-02-13 14:49:03 +00:00
|
|
|
|
</div>
|
2019-10-14 16:23:53 +01:00
|
|
|
|
<div class="grid-row govuk-!-padding-bottom-12">
|
2018-02-14 16:13:11 +00:00
|
|
|
|
<div class="column-one-quarter">
|
2018-02-13 14:49:03 +00:00
|
|
|
|
{% include "org_nav.html" %}
|
|
|
|
|
|
</div>
|
2019-10-11 16:44:17 +01:00
|
|
|
|
<div class="column-three-quarters">
|
|
|
|
|
|
{% 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 %}
|