{% extends 'accounts/base.html' %} {% block title %}{% blocktrans with profile.user.username as username %}{{ username }}'s profile.{% endblocktrans %}{% endblock %} {% block main %}
{% block profile_details %} {% thumbnail profile.get_picture_url "128x128" as im %} {{ user }} {% endthumbnail %}
{% block profile_definition_list %} {% if profile.user.get_full_name %}
{% trans "Name" %}
{{ profile.user.get_full_name }}
{% 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 %}
{% endblock %}
{% endblock %}