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

{{ user.full_name }}

{% if roles %}

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

{% endif %} {% if editorial_groups %}

{% trans "Editorial groups" %}:
{% for membership in editorial_groups %} {{ membership.group.name }} {% endfor %}

{% endif %} {% if staff_groups %}

{% trans "Staff roles" %}:
{{ staff_groups.first.job_title }} {% comment %}No support yet for multiple staff groups{% endcomment %}

{% endif %} {% 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/journal/box_article.html" with article=article level="shallow" %} {% endfor %} {% endif %}
{% endblock %}