Files
notifications-admin/app/templates/withnav_template.html
Chris Hill-Scott 48c0ae0140 Fix banner copy
2016-01-22 13:14:50 +00:00

18 lines
487 B
HTML

{% extends "admin_template.html" %}
{% from "components/banner.html" import banner %}
{% block fullwidth_content %}
<div class="grid-row">
<div class="column-one-quarter">
{% include "main_nav.html" %}
</div>
<div class="column-three-quarters">
{{ banner(
'Your service is in restricted mode. You can only send notifications to yourself.',
'info'
) }}
{% block maincolumn_content %}{% endblock %}
</div>
</div>
{% endblock %}