{% load static %} Кабинет
{% with header_name=header_name|default:request.session.user_full_name|default:request.session.user_email %} Здравствуйте, {{ header_name }}! {% endwith %}
{% if messages %} {% endif %}

Кабинет

{% if has_profile %} профиль создан {% else %} профиль ещё не создан {% endif %}

Данные аккаунта

Имя
{{ request.session.user_full_name|default:"—" }}
Email
{{ request.session.user_email|default:"—" }}
Роль
{{ request.session.user_role|default:"—" }}
ID пользователя
{{ request.session.user_id|default:"—" }}

Данные профиля

{% if has_profile and profile %}
Пол
{{ profile.gender|default:"—" }}
Город
{{ profile.city|default:"—" }}
Языки
{% if profile.languages %} {% for lang in profile.languages %}{{ lang }}{% endfor %} {% else %} — {% endif %}
Интересы
{% if profile.interests %} {% for it in profile.interests %}{{ it }}{% endfor %} {% else %} — {% endif %}
ID профиля
{{ profile.id }}
ID пользователя (в профиле)
{{ profile.user_id }}
Показать сырой JSON профиля
{{ profile|safe }}
{% else %}

Профиль ещё не создан. Заполните форму ниже.

{% endif %}
{% if not has_profile or not profile %}

Создать профиль

{% csrf_token %}
Несколько — через запятую: ru,en
Несколько — через запятую: music,travel
Сбросить
{% endif %}