{% 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.email %}
{{ object.email }}
{% endif %}
{% if object.phone %}
{{ object.phone }}
{% endif %}
{% if object.full_address %}
{{ object.full_address }}
{% endif %}
{% if object.country %}
{{ object.country.name }}
{% endif %}
{{ object.institution }}
{% trans "Position" %}: {{ object.position }}
{% for topic in object.key_work_topics.all %} {{ topic }} {% endfor %}
{% endif %} {% if object.experiences.exists %}{% for experience in object.experiences.all %} {{ experience }} {% endfor %}
{% endif %}