2015-12-14 16:37:15 +00:00
|
|
|
|
{% extends "admin_template.html" %}
|
|
|
|
|
|
|
2019-10-14 16:23:53 +01:00
|
|
|
|
{% set mainClasses = "govuk-!-padding-top-0 govuk-!-padding-bottom-0" %}
|
|
|
|
|
|
|
2017-02-13 10:45:15 +00:00
|
|
|
|
{% block per_page_title %}
|
|
|
|
|
|
{% block service_page_title %}{% endblock %} – {{ current_service.name }}
|
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
|
2019-10-11 16:44:17 +01:00
|
|
|
|
{% block main %}
|
|
|
|
|
|
<div class="govuk-width-container">
|
2016-11-22 17:15:31 +00:00
|
|
|
|
<div class="navigation-service">
|
2019-06-21 14:05:00 +01:00
|
|
|
|
{% if current_service.organisation_id %}
|
|
|
|
|
|
{% if current_user.platform_admin or
|
|
|
|
|
|
(current_user.belongs_to_organisation(current_service.organisation_id) and current_service.live) %}
|
2019-06-21 14:12:19 +01:00
|
|
|
|
<a href="{{ url_for('.organisation_dashboard', org_id=current_service.organisation_id) }}" class="navigation-organisation-link">{{ current_service.organisation.name }}</a>
|
2019-06-20 09:53:21 +01:00
|
|
|
|
{% endif %}
|
2019-06-21 14:05:00 +01:00
|
|
|
|
{% endif %}
|
|
|
|
|
|
<div class="navigation-service-name">
|
2016-11-22 17:15:31 +00:00
|
|
|
|
{{ current_service.name }}
|
2017-02-13 10:46:56 +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>
|
2016-11-22 17:15:31 +00:00
|
|
|
|
</div>
|
2019-10-14 16:23:53 +01:00
|
|
|
|
<div class="grid-row govuk-!-padding-bottom-12">
|
2017-04-27 15:20:25 +01:00
|
|
|
|
{% if help %}
|
|
|
|
|
|
<div class="column-one-third">
|
|
|
|
|
|
{% else %}
|
|
|
|
|
|
<div class="column-one-quarter">
|
|
|
|
|
|
{% endif %}
|
2019-10-14 16:23:53 +01:00
|
|
|
|
{% include "main_nav.html" %}
|
|
|
|
|
|
</div>
|
2019-11-25 10:37:35 +00:00
|
|
|
|
{% if help %}
|
2019-10-14 16:23:53 +01:00
|
|
|
|
<div class="column-two-thirds">
|
2019-11-25 10:37:35 +00:00
|
|
|
|
{% else %}
|
2019-10-14 16:23:53 +01:00
|
|
|
|
<div class="column-three-quarters">
|
2019-11-25 10:37:35 +00:00
|
|
|
|
{% endif %}
|
2019-10-11 16:44:17 +01:00
|
|
|
|
{% block beforeContent %}{% endblock %}
|
|
|
|
|
|
<main class="govuk-main-wrapper column-main {{ mainClasses }}" id="main-content" role="main">
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
|
{% include 'flash_messages.html' %}
|
|
|
|
|
|
{% block maincolumn_content %}{% endblock %}
|
|
|
|
|
|
{% endblock %}
|
|
|
|
|
|
</main>
|
|
|
|
|
|
</div>
|
2016-01-22 10:57:49 +00:00
|
|
|
|
</div>
|
|
|
|
|
|
</div>
|
2015-12-15 08:20:25 +00:00
|
|
|
|
{% endblock %}
|