{% if request.user.is_authenticated %}
{% if "BANNER_TOP"|settings_or_config %}
{% endif %}
{% plugin_banners %}
{% for message in messages %}
{% block header %}{% endblock header %}
{% block content %}{% endblock content %}
{% if request.user.is_authenticated %}
{% if "BANNER_BOTTOM"|settings_or_config %}
{{ "BANNER_TOP"|settings_or_config|render_markdown }}
{% endif %}
{% endif %}
{% if settings.MAINTENANCE_MODE %}
Maintenance Mode
Nautobot is currently in maintenance mode. Functionality may be limited.
{{ message }}
{% endfor %}
{{ "BANNER_BOTTOM"|settings_or_config|render_markdown }}
{% endif %}
{% endif %}