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

{{ 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 %}