mirror of
https://github.com/GSA/notifications-admin.git
synced 2026-02-05 19:03:30 -05:00
18 lines
487 B
HTML
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 %}
|