{% extends "oscar/customer/profile/profile.html" %} {% load i18n static %} {% block tabcontent %}
{% trans "Personal information" %}
{% block profile_fields %} {% for field in profile_fields %} {% endfor %} {% endblock %}
{% trans 'Name' %}: {{ user.get_full_name|default:'-' }}
{% trans 'Date registered' %}: {{ user.date_joined }}
{% trans 'Email address' %}: {{ user.email }}
{{ field.name }} {{ field.value|default:"-" }}
{% block profile_edit %} {% endblock profile_edit %}
{% trans "Login information" %}
{% trans 'Email address' %}: {{ user.email }}
{% trans 'Password' %}: *******
{% block extra_profile_rows %}{{ block.super }}{% endblock %}
{% endblock %}