{% extends "profiles/base.html" %} {% load i18n avatar_tags %} {% block breadcrumb %} {% endblock %} {% block content %}

Profile for {{ profile.user.username }}

{% avatar profile.user 100 %}

{% trans "Name" %}: {{ profile.name}}

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

{% trans "Organization" %}: {{ profile.organization}}

{% trans "Position" %}:: {{ profile.position}}

{% trans "Voice" %}: {{ profile.voice}}

{% trans "Fax" %}: {{ profile.fax}}

{% trans "Delivery" %}: {{ profile.delivery}}

{% trans "Area" %}: {{ profile.area}}

{% trans "Zip Code" %}: {{ profile.zipcode}}

{% trans "Country" %}: {{ profile.country}}

{% endblock %} {% block sidebar %}

{% trans "Actions" %}

{% blocktrans with profile.user as user %}Maps by {{ user }}{% endblocktrans %}

{% if profile.user.map_set.count %} {% else %}

{% blocktrans with profile.user as user %} {{ user }} has not created any maps yet. {% endblocktrans %} {% endif %}

{% blocktrans with profile.user as user %}Layers by {{ user }}{% endblocktrans %}

{% if profile.user.layer_set.count %} {% else %}

{% blocktrans with profile.user as user %} {{ user }} has not uploaded any data yet. {% endblocktrans %} {% endif %}

{% endblock %}