{% extends 'userena/base_userena.html' %} {% load i18n %} {% block title %}{% firstof profile.user.get_full_name profile.user.username %}{{ username }}'s Profile{% endblock %} {% block pageheader %}

{% trans {% firstof profile.user.get_full_name profile.user.username %}

{% endblock pageheader %} {% block content %}
{% block profile_details %}
{% block profile_definition_list %} {% 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.municipality %}
{% trans "Municipality" %}
{{ profile.municipality }}
{% endif %} {% if profile.position %}
{% trans "Postition" %}
{{ profile.position }}
{% endif %} {% if profile.location %}
{% trans "Location" %}
{{ profile.location }}
{% endif %} {% endblock %}
{% endblock %}
{% endblock %}