2016-02-01 12:15:38 +00:00
|
|
|
{% extends "admin_template.html" %}
|
|
|
|
|
|
2019-10-14 16:23:53 +01:00
|
|
|
{% set mainClasses = "govuk-!-padding-top-0 govuk-!-padding-bottom-12" %}
|
|
|
|
|
|
2019-10-11 16:44:17 +01:00
|
|
|
{% block beforeContent %}
|
2019-05-30 10:56:19 +01:00
|
|
|
{% if current_service and current_service.active and current_user.is_authenticated and current_user.belongs_to_service(current_service.id) %}
|
2017-03-14 13:47:13 +00:00
|
|
|
<div class="navigation-service">
|
2019-12-06 07:53:46 +00:00
|
|
|
<a href="{{ url_for('main.show_accounts_or_dashboard') }}" class="govuk-link govuk-link--no-visited-state navigation-service-back-to">Back to {{ current_service.name }}</a>
|
2017-03-14 13:47:13 +00:00
|
|
|
</div>
|
|
|
|
|
{% endif %}
|
2019-10-11 16:44:17 +01:00
|
|
|
{% endblock %}
|
|
|
|
|
|
|
|
|
|
{% block content %}
|
|
|
|
|
{% include 'flash_messages.html' %}
|
|
|
|
|
{% block maincolumn_content %}{% endblock %}
|
2016-02-01 12:15:38 +00:00
|
|
|
{% endblock %}
|