{% extends "people/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 }}

{% include "people/_profile_filters.html" %}
{% include "_viewby.html" %}
{% 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 "No data found" %}

{% endif %}
{% if object_list|length > 0 %} {% paginate %} {% endif %}
{% 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 %}
{% endblock %} {% block extra_script %} {% endblock extra_script %}