{% extends "people/profile_base.html" %} {% load static %} {% load friendly_loader %} {% friendly_load i18n avatar_tags relationship_tags activity_tags %} {% load pagination_tags %} {% block title %} {% trans "Profile of " %}{{ profile.user.username }} {% endblock %} {% block body %}

{% trans "Profile of " %}{{ profile.user.username }}

  • {% trans "Name" %}: {{ profile.name|default_if_none:"not available" }}
  • {% trans "Organization" %}: {{ profile.organization|default_if_none:"not available" }}
  • {% trans "Position" %}: {{ profile.position|default_if_none:"not available" }}
  • {% trans "Profile" %}: {{ profile.profile|default_if_none:"not available" }}
  • {% trans "Voice" %}: {{ profile.voice|default_if_none:"not available" }}
  • {% trans "Fax" %}: {{ profile.fax|default_if_none:"not available" }}
  • {% trans "Delivery Point" %}: {{ profile.delivery|default_if_none:"not available" }}
  • {% trans "City" %}: {{ profile.city|default_if_none:"not available" }}
  • {% trans "Administrative Area" %}: {{ profile.area|default_if_none:"not available" }}
  • {% trans "Postal Code" %}: {{ profile.zipcode|default_if_none:"not available" }}
  • {% trans "Country" %}: {{ profile.country|default_if_none:"not available" }}
  • {% trans "Keywords" %}: {% for tag in profile.keywords.all %} {{ tag.name }} {% endfor %}
{% avatar profile.user 65 %}

{{ profile.name }}

{% if_has_tag actor_url %}

{% trans "My Activities" %}

{% endif_has_tag %} {% if user == profile.user %}

{% trans "Actions" %}

{% if_has_tag if_relationship %} {% include "relationships/_manage_connections.html" %} {% endif_has_tag %} {% else %} {% if_has_tag if_relationship %} {% include "relationships/_profile_follow.html" %} {% endif_has_tag %} {% endif %} {% if_has_tag if_relationship %} {% include "relationships/_list_connections.html" %} {% endif_has_tag %}
{% if object_list|length > 0 %}
{% include "people/_profile_filters.html" %}
{% include "_viewby.html" %}
{% endif %}
{% if object_list|length > 0 %} {% autopaginate object_list 5 %} {% for obj in object_list %}
{% if obj.class_name = 'Map' %} {% trans 'Map' %} {% endif %} {% if obj.class_name = 'Layer' %} {% trans 'Layer' %} {% endif %} {% if obj.class_name = 'Document' %} {% trans 'Document' %} {% endif %} {{ obj.title }}
{{ obj.date|date:"Y-m-d" }}

{{ obj.abstract }}

{% endfor %} {% else %}

{% trans "This user still hasn't uploaded or created new contents." %}

{% endif %}
{% if object_list|length > 0 %} {% paginate %} {% endif %}
{% endblock %} {% block extra_script %} {% endblock extra_script %}