{% extends 'account/profile/base.html' %} {% load i18n %} {% block content %} {% with user=request.user %}
{% trans "Ім'я" %} {% if user.first_name %}{{ user.first_name }}{% else %}—{% endif %}
{% trans "Прізвище" %} {% if user.last_name %}{{ user.last_name }}{% else %}—{% endif %}
{% trans 'Адреса електронної пошти' %} {{ user.email }}
{% trans 'Дата реєстрації' %} {{ user.date_joined }}
{% trans "Телефон" %} {% if user.profile.mobile %}{{ user.profile.mobile }}{% else %}—{% endif %}
{% trans "Адреса" %} {% if user.profile.address %}{{ user.profile.address }}{% else %}—{% endif %}
{% trans 'Редагувати профіль' %} {% trans 'Змінити пароль' %} {% trans 'Видалити профіль' %}
{% endwith %} {% endblock %}