{% 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 %}
{% avatar profile 140 %} {% trans "Message User" %}
{% if profile.email %} {% else %} {% endif %} {% if user.is_authenticated %} {% if profile.voice %} {% else %} {% endif %} {% endif %}
{% if user == profile %} {% if user.is_superuser %} {% 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 %}