Files
notifications-admin/app/templates/withnav_template.html
Chris Hill-Scott ee78d0bf59 Move switch service out of black header
Also following the pattern work that Tim and Stephen have done.
2016-11-18 12:00:01 +00:00

20 lines
596 B
HTML

{% extends "admin_template.html" %}
{% block fullwidth_content %}
<div class="navigation-service">
<h2 class="navigation-service-name">
{{ current_service.name }}
</h2>
<a href="{{ url_for('main.choose_service') }}" class="navigation-service-switch">Switch service</a>
</div>
<div class="grid-row">
<div class="column-one-third">
{% include "main_nav.html" %}
</div>
<main role="main" class="column-two-thirds column-main">
{% include 'flash_messages.html' %}
{% block maincolumn_content %}{% endblock %}
</main>
</div>
{% endblock %}