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

16 lines
441 B
HTML
Raw Normal View History

{% extends "admin_template.html" %}
{% block fullwidth_content %}
<div id="content">
{% if current_service %}
<div class="navigation-service">
<a href="{{ url_for('main.show_all_services_or_dashboard') }}">Back to {{ current_service.name }}</a>
</div>
{% endif %}
<main role="main">
{% include 'flash_messages.html' %}
{% block maincolumn_content %}{% endblock %}
</main>
</div>
{% endblock %}