{% extends 'base.html' %} {% block title %}Личный кабинет{% endblock %} {% block header %}{% endblock %} {% block content %} {% with messages = get_flashed_messages() %} {% if messages %} {% for message in messages %}

{{ message }}

{% endfor %} {% endif %} {% endwith %}
EvaTeam
{% for field in g.auth.values(is_defined=True) | selectattr("visible") %} {% if field.input_type != "hidden" and field.caption == "email"%}
{% if field.value is not none%} {{ field.value }} {% else %} {{ 'Email не был указан' }} {% endif %}
{% endif %} {% endfor %} Управление аккаунтом Eva
{% if g.auth.scope %} {% for org_name in g.auth.prepare_scope() %} {% if org_name == config.AUTH_SESSION_COOKIE_DOMAIN %} {{ org_name }} {% else %} {{ org_name }}{{ config.AUTH_SESSION_COOKIE_DOMAIN }} {% endif %} {% endfor %} {% elif g.auth.org_name %} {{ g.auth.org_name }}{{ config.AUTH_SESSION_COOKIE_DOMAIN }} {% else %}

У вас пока нет пространства

Создать {% endif %}
Выйти из аккаунта
{% endblock %} {% block scripts %} {% endblock %}