2016-02-01 12:15:38 +00:00
|
|
|
{% extends "admin_template.html" %}
|
|
|
|
|
|
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-06-21 14:29:52 +01:00
|
|
|
<a href="{{ url_for('main.show_accounts_or_dashboard') }}" class="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 %}
|