{% extends 'userena/base_userena.html' %} {% load i18n %} {% load url from future %} {% block title %}{{ profile.user.username }}'s {% trans "profile" %}.{% endblock %} {% block content_title %}

{{ profile.user.username }} {% if profile.user.get_full_name %}({{ profile.user.get_full_name }}){% endif %}

{% endblock %} {% block content %}
{% comment %}Dirty hack. Will use django-guardian in the future.{% endcomment %} {% if user.username == profile.user.username %} {% endif %}
{% trans {% if profile.user.get_full_name %}

{% trans "Name" %}
{{ profile.user.get_full_name }}

{% endif %} {% if profile.user.email %}

{% trans "Email" %}
{{ profile.user.email }}

{% endif %} {% if profile.age != 0 %}

{% trans "Age" %}
{{ profile.age }}

{% endif %} {% if profile.website %}

{% trans "Website" %}
{{ profile.website }}

{% endif %} {% if profile.location %}

{% trans "Location" %}
{{ profile.location }}

{% endif %} {% if profile.about_me %}

{% trans "About me" %}
{{ profile.about_me }}

{% endif %}
{% endblock %}