{% extends 'layout.main.html' %} {% load i18n %} {% load url from future %} {% block title %}{% trans "Change password" %}{% endblock %} {% block content %}

Profile of {{ profile.user }}

{% trans
{% if profile.user.get_full_name %}
{% trans "Name" %}
{{ profile.user.get_full_name }}
{% endif %} {% if profile.user.email and not hide_email %}
{% trans "Email" %}
{{ profile.user.email }}
{% endif %} {% if profile.age %}
{% trans "Age" %}
{{ profile.age }}
{% endif %} {% if profile.website %}
{% trans "Website" %}
{{ profile.website|urlize }}
{% endif %} {% if profile.location %}
{% trans "Location" %}
{{ profile.location }}
{% endif %} {% if profile.about_me %}
{% trans "About me" %}
{{ profile.about_me }}
{% endif %}
{% endblock %}