{% extends "idios/base.html" %} {% load i18n %} {% load uni_form_tags %} {% load account_tags %} {% block head_title %}{% user_display other_user as other_user_display %}{% blocktrans %}Profile for {{ other_user_display }}{% endblocktrans %}{% endblock %} {% block body %} {% user_display other_user as other_user_display %}
{% if other_user.get_profile.name %}

{% blocktrans %}Profile for {{ other_user_display }}{% endblocktrans %}

{% else %}

{% blocktrans %}Profile for {{ other_user_display }}{% 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 %}
{% endblock %} {% block extra_body %} {% endblock %}