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

18 lines
479 B
HTML
Raw Normal View History

{% extends "admin_template.html" %}
{% block fullwidth_content %}
<div class="grid-row">
<div class="column-one-quarter">
{% include "main_nav.html" %}
</div>
<div class="column-three-quarters">
{{ banner(
2016-01-22 12:11:23 +00:00
'Your service is in restricted mode. You can only send notifications to yourself.',
'info'
) }}
{% include 'flash_messages.html' %}
{% block maincolumn_content %}{% endblock %}
</div>
</div>
{% endblock %}