◈
Portal Auth
{% if session.get('admin_username') %}
Dashboard
Users
Sessions
Auth logs
API tokens
{{ session.get('admin_username', '') }}
Log out
{% endif %}
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %}
{% for cat, msg in messages %}
{{ msg }}
{% endfor %}
{% endif %} {% endwith %} {% block content %}{% endblock %}