{% 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:profile.username }}{% endblock %} {% block head %} {% if TWITTER_CARD %} {% include "people/_profile_twittercard.html" %} {% endif %} {% if OPENGRAPH_ENABLED %} {% include "people/_profile_opengraph.html" %} {% endif %} {{ block.super }} {% endblock %} {% block body_class %}people explore{% endblock %} {% block body %}
{% avatar profile 240 %}
{% if user.is_authenticated %} {% if user == profile %} {% for group in profile.group_list_all %} {% endfor %} {% else %} {% for group in profile.group_list_public %} {% endfor %} {% endif %} {% endif %}

{{ profile.first_name|default:profile.name_long }}

{% if user.is_authenticated %} {% if profile.voice %} {% else %} {% endif %} {% endif %}
{{ profile.position | default:_('Not provided.') }}
{{ profile.organization | default:_('Not provided.') }}
{{ profile.location | default:_('Not provided.') }}
{{ profile.voice }}Not provided.
{{ profile.fax | default:_('Not provided.') }}
{{ profile.profile | default:_('Not provided.') }}
{% if profile.keyword_list %} {% for keyword in profile.keyword_list %} {{ keyword }} {% endfor %} {% else %} {% trans 'Not provided' %} {% endif %}
{% if user == profile %} {% if user.is_superuser %} {% if_has_tag if_relationship %} {% include "relationships/_manage_connections.html" %} {% endif_has_tag %} {% else %} {% if user.is_superuser %} {% endif %} {% 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 %}

{% trans "Resources" %}

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