EmotionAnalyzer
Главная
{% if current_user.is_authenticated %}
Профиль
{% if current_user.is_authenticated and current_user.is_admin %}
Админ-панель
{% endif %} {% endif %}
{% with messages = get_flashed_messages(with_categories=true) %} {% if messages %}
{% for category, message in messages %}
{% if category == 'error' %}
{% elif category == 'success' %}
{% else %}
{% endif %}
{{ message }}
{% endfor %}
{% endif %} {% endwith %} {% block content %}{% endblock %}
{% block scripts %}{% endblock %}