{% 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 %}
{% trans 'Position' %} | {{ profile.position | default:_('Not provided.') }} | |
{% trans 'Organization' %} | {{ profile.organization | default:_('Not provided.') }} | |
{% trans 'Location' %} | {{ profile.location | default:_('Not provided.') }} | |
{% trans 'Voice' %} | {% if profile.voice %}{{ profile.voice }} | {% else %}Not provided. | {% endif %}
{% trans 'Fax' %} | {{ profile.fax | default:_('Not provided.') }} | |
{% trans 'Description' %} | {{ profile.profile | default:_('Not provided.') }} | |
{% trans 'Keywords' %} | {% if profile.keyword_list %} {% for keyword in profile.keyword_list %} {{ keyword }} {% endfor %} {% else %} {% trans 'Not provided' %} {% endif %} |