{% block head %}
{% block title %}{% endblock %} - {{ app_title }}
{% endblock %}
{{ app_title }}{% if current_user.is_authenticated %}{% endif %}
{% if current_user.is_authenticated and current_user.sign_count > 0 %}
Triggers
{% elif current_user.is_authenticated %}
Re-login to see triggers
{% endif %}
{% if current_user.is_admin %}
Admin
Triggers
Security
Users
OTP
Registration tokens
Banlist
Settings
{% elif current_user.is_authenticated %}
Settings
Security
{% endif %}
About
{% if current_user.is_authenticated %}
Logout
{% endif %}
{% with messages = get_flashed_messages() %} {% if messages %} {% for message in messages %}
{{ message }} {% endfor %} {% endif %} {% endwith %}
{% block content %}{% endblock %}