Files
notifications-admin/app/templates/withoutnav_template.html
T

16 lines
437 B
HTML
Raw Normal View History

{% extends "admin_template.html" %}
{% block fullwidth_content %}
2016-11-22 17:15:31 +00:00
<div id="content">
{% if current_service %}
2017-03-14 13:47:13 +00:00
<div class="navigation-service">
2018-03-08 16:51:53 +00:00
<a href="{{ url_for('main.show_accounts_or_dashboard') }}">Back to {{ current_service.name }}</a>
2017-03-14 13:47:13 +00:00
</div>
{% endif %}
2016-11-22 17:15:31 +00:00
<main role="main">
{% include 'flash_messages.html' %}
{% block maincolumn_content %}{% endblock %}
</main>
</div>
{% endblock %}