{% extends "core/base.html" %} {% load static %} {% block title %}{{ user.full_name }} {% trans 'Profile' %}{% endblock %} {% block body %}
{% include "common/elements/profile_image.html" with classes="thumbnail img-fluid editorial-image" user=user %}

{{ user.full_name }}

{% trans 'Roles' %}:

    {% for role in roles %}
  • {{ role.role.name }}
  • {% endfor %}

{% include "common/elements/profile_affiliations.html" %}
{% 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 level="shallow" %} {% endfor %} {% endif %}
{% endblock %}