{% extends "core/base.html" %} {% load static %} {% load i18n %} {% block title %}{{ user.full_name }} {% trans "Profile" %}{% endblock %} {% block body %}
Profile photo of {{ user.full_name }}

{{ user.full_name }}

{% trans "Roles" %}:
{% for role in roles %}{{ role.role.name }}{% if not forloop.last %}, {% endif %}{% endfor %}

{% trans "Affiliation" %}:
{{ user.affiliation }}

{% trans "Country" %}:
{{ user.country }}

{% if user.biography %}

{% trans "Biography" %}


{{ user.biography|safe }}

{% endif %} {% if user.published_articles %}

{% trans "Publications" %}


{% for article in user.published_articles %} {% include "elements/article_listing.html" with article=article %}
{% endfor %} {% endif %}
{% endblock %}