{% 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.name_long }}

{% avatar profile 140 %}
{% if profile.position %}
{{ profile.position }}
{% endif %} {% if profile.organization %}
{{ profile.organization }}
{% endif %} {% if user.is_authenticated %} {% if profile.location %}
{{ profile.location }}
{% endif %} {% if profile.voice %}
{{ profile.voice }}
{% endif %} {% if profile.fax %}
{{ profile.fax }}
{% endif %} {% if profile.email %}
{{ profile.email }}
{% endif %} {% endif %} {% if profile.keyword_list %}
{% for keyword in profile.keyword_list %} {{ keyword }} {% endfor %}
{% endif %} {% if object.email %}
{{ object.email }}
{% endif %}
{% 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 %}
{% if user.is_authenticated %}

Groups

{% if user == profile %} {% for group in profile.group_list_all %}
{{ group.title }} {% if group.email %} {% endif %}

{{ group.description}}

{% endfor %} {% else %} {% for group in profile.group_list_public %}
{{ group.title }} {% if group.email %} {% endif %}

{{ group.description}}

{% endfor %} {% endif %}
{% endif %}

{% trans "Resources" %}

{% include "people/_profile_filters.html" %}
{% include "search/_sort_filters.html" %}
{% include 'search/_pagination.html' %}
{% include 'base/_resourcebase_snippet.html' %}
{% include "_bulk_permissions_form.html" %} {% endblock %} {% block extra_script %} {% if GEONODE_SECURITY_ENABLED %} {% include "_permissions_form_js.html" %} {% endif %} {% include 'search/search_scripts.html' %} {% endblock %}