{% extends 'accounts/base.html' %} {% block title %}{% blocktrans with user.username as username %}{{ username }}'s profile.{% endblocktrans %}{% endblock %} {% block main %}
{% block profile_details %} {{ user }}
{% block profile_definition_list %} {% if user.get_full_name %}
{% trans "Name" %}
{{ user.get_full_name }}
{% endif %} {% if user.age %}
{% trans "Age" %}
{{ user.age }}
{% endif %} {% if user.website %}
{% trans "website" %}
{{ user.website|urlize }}
{% endif %} {% if user.location %}
{% trans "Location" %}
{{ user.location }}
{% endif %} {% if user.about_me %}
{% trans "About me" %}
{{ user.about_me }}
{% endif %} {% endblock %}
{% endblock %}
{% endblock %}