{% 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.first_name|default_if_none:profile.username }}{% endblock %} {% block body_class %}people explore{% endblock %} {% block body %}

{{ profile.first_name|default_if_none:profile.username }}

{% avatar profile 140 %}
{{ profile.username }} {% if profile.position %} | {{ profile.position }}{% endif %} {% if profile.organization %} @ {{ profile.organization }}{% endif %} {% if profile.profile %}
{{ profile.profile }}{% endif %}
{% if profile.delivery %}{{ profile.delivery }}, {% endif %} {% if profile.profile %}{{ profile.zipcode }} {% endif %} {% if profile.city %}{{ profile.city }} {% endif %} {% if profile.area %}{{ profile.area }} {% endif %} {{ profile.country|default_if_none:"not available" }}
{% if user.is_authenticated %} {% if profile.voice %}
{{ profile.voice }}
{% endif %} {% if profile.fax %}
{{ profile.fax }}
{% endif %} {% endif %}
{% for tag in profile.keywords.all %} {{ tag.name }} {% endfor %}
{% if user == profile %} {% 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 %}

Resources

{% include "people/_profile_filters.html" %}
{% if object_list|length > 0 %}
{% autopaginate object_list 5 %} {% for obj in object_list %}
{% if obj.class_name = 'Map' %}

{% endif %} {% if obj.class_name = 'Layer' %}

{% endif %} {% if obj.class_name = 'Document' %}

{% endif %} {{ obj.title }}

{{ obj.abstract }}

{% endfor %}
{% paginate %}
{% else %}

{% trans "No contents found." %}

{% endif %} {% endblock %}