{% extends "base.html" %} {% load i18n static %} {% block title %}{% trans "User" %}: {{ object.name }}{% endblock %} {% block content %} {% include 'widgets/heading1.html' with text=object.name %}

{{ userprofile_output }}
{% if object.avatar %}
{% include 'widgets/image.html' with src=object.avatar.url name=object href=object.detail_url %}
{% endif %}
{% if user == request.user %} {% trans 'edit profile' as edit_text %} {% include 'widgets/read-more-link.html' with fontawesome='pencil' text=edit_text href=object.update_url %} {% endif %}

{% if object.email %} {{ object.email }}
{% endif %} {% if object.phone %} {{ object.phone }}
{% endif %} {% if object.full_address %} {{ object.full_address }}
{% endif %} {% if object.country %} {{ object.country.name }} {{ object.country.name }} {% endif %}

{% if object.institution %}

{% trans "Institution" %}

{{ object.institution }}
{% trans "Position" %}: {{ object.position }}

{% endif %}
{% if object.key_work_topics.exists %}

{% blocktrans %}Key Work Topics{% endblocktrans %}

{% for topic in object.key_work_topics.all %} {{ topic }} {% endfor %}

{% endif %} {% if object.experiences.exists %}

{% blocktrans %}WOCAT Experiences{% endblocktrans %}

{% for experience in object.experiences.all %} {{ experience }} {% endfor %}

{% endif %}
{{ users_teaser }} {{ qcat_teaser }}


{% endblock content %}