{% extends "basic_profiles/base.html" %} {% load i18n %} {% load uni_form %} {% block head_title %}{% blocktrans %}Profile for {{ other_user }}{% endblocktrans %}{% endblock %} {% block body %}
{% include "basic_profiles/profile_right_panel.html" %}
{% if other_user.get_profile.name %}

{% blocktrans %}Profile for {{ other_user }}{% endblocktrans %}

{% else %}

{% blocktrans %}Profile for {{ other_user }}{% endblocktrans %}

{% endif %}
{% if other_user.get_profile.name %}

{% trans "Name" %}: {{ other_user.get_profile.name }}

{% endif %} {% if other_user.get_profile.about %}

{% trans "About" %}: {{ other_user.get_profile.about }}

{% endif %} {% if other_user.get_profile.location%}

{% trans "Location" %}: {{ other_user.get_profile.location }}

{% endif %} {% if other_user.get_profile.website %}

{% trans "Website" %}: {{ other_user.get_profile.website }}

{% endif %}
{% if is_me %}

Edit profile

{% endif %}
{% if is_me %} {% if user.member %}

{% trans "Party membership" %}

{% trans "number" %} {{ user.member.number }}
{% trans "name" %} {{ user.member.name }}
{% trans "email" %} {{ user.member.email }}
{% trans "phone" %} {{ user.member.phone }}
{% trans "geopers" %} {{ user.member.geopers }}
{% endif %} {% endif %} {% endblock %} {% block extra_body %} {% endblock %}