Опросы
{% if current_user.is_authenticated %}
Отчёты
{% if current_user.is_admin %}
Пользователи
{% endif %}
{{ current_user.full_name or current_user.username }} {% if current_user.is_admin %}
Админ
{% endif %}
Выйти
{% else %}
Вход
{% endif %}
{% block content %}{% endblock %} {% with messages = get_flashed_messages(with_categories=true) %} {% if messages %}
{% for category, message in messages %}
{{ message }}
{% endfor %}
{% endif %} {% endwith %}