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