{% extends "base.html" %} {% from "_macros.html" import icon, brandlink %} {# Shared chrome for the admin area: its own narrow nav rather than the chat sidebar, so administration is visibly a different place from chatting. #} {% block head %} {% endblock %} {% block body_attrs %} data-authenticated="true"{% endblock %} {% block body %}
{# `id="sidebar"` and the drawer's furniture, because below the phone breakpoint `.sidebar` is a fixed overlay that starts closed -- and this one had neither an id for `data-toggle="#sidebar"` to find nor any control to open it. The administration area was reachable on a phone and then unnavigable once you arrived. #} {% include "partials/_sidebar_scrim.html" %}
{% include "partials/_sidebar_toggle.html" %}

{% block heading %}Administration{% endblock %}

{% block admin_content %}{% endblock %}
{% endblock %}