Система регистрации участников мероприятия
{% if current_user.is_authenticated %}
Вы вошли как: {{ current_user.username }} ({{ current_user.role }})
Выйти
{% endif %}
{% with messages = get_flashed_messages(with_categories=true) %}
{% if messages %}
{% for category, message in messages %}
{{ message }}
{% endfor %}
{% endif %}
{% endwith %}
{% block content %}{% endblock %}