{% extends "people/profile_base.html" %} {% load static %} {% load i18n %} {% load avatar_tags %} {% load 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 %}{% trans "people explore" %}{% endblock %} {% block body %}
{% autoescape off %}{% avatar profile 240 %}{% endautoescape %}
{% 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 SHOW_PROFILE_EMAIL %} {% if profile.email %} {% else %} {% endif %} {% endif %} {% if user.is_authenticated %} {% if profile.voice %} {% else %} {% endif %} {% endif %}
{{ profile.email }}{% trans 'Not provided.' %}
{{ profile.position | default:_('Not provided.') }}
{{ profile.organization | default:_('Not provided.') }}
{{ profile.location | default:_('Not provided.') }}
{{ profile.voice }}{% trans "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 USE_GEOSERVER and DISPLAY_WMS_LINKS %}

{% if request.user.is_authenticated and access_token %} {% else %} {% endif %} {% trans 'User layers WMS GetCapabilities document' %}

{% endif %}
{% if user == profile %} {% else %} {% if user.is_superuser and not READ_ONLY_MODE %} {% endif %} {% endif %}

{% trans "Resources" %}

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