{% extends "userprofile/base_2col.html" %} {% load i18n %} {% block title %}{% trans "Overview of your profile" %}{% endblock %} {% block robots %}noindex,nofollow{% endblock %} {% block extrajs %} {% if GOOGLE_MAPS_API_KEY and user.get_profile.location %} {% endif %} {% endblock %} {% block userprofile_navigation %} {% include "userprofile/menu.html" %} {% endblock %} {% block userprofile_content %} {% load avatars %}
{% csrf_token %}
{% trans "Overview of your profile" %}

{{ user }}

{% if user.get_profile.country %} {{ user.get_profile.get_country_display }} {% else %} {% trans "Not set" %} {% endif %}

{% if GOOGLE_MAPS_API_KEY %}

{% if user.get_profile.location %} {{ user.get_profile.location }} {% else %} {% trans "Not set" %} {% endif %}

{% endif %} {% for field in fields %}

{% if field.value %} {{ field.value }} {% else %} {% trans "Not set" %} {% endif %}

{% endfor %}

{% if user.get_profile.location %}
{% endif %}
{% endblock %} {% block userprofile_content_related %}

{% trans "Management:" %}

{% trans "Change password" %}
{% if email %}{% trans "Change your e-mail address" %}{% else %}{% trans "Add your e-mail address" %}{% endif %} {% if not validated and email %}
{% trans "Resend validation e-mail" %} {% endif %}
{% if not user.get_profile.location %} {% trans "Add location" %} {% else %} {% trans "Change location" %} {% endif %}
{% endblock %}