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

{{ 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 %} {% if user.affiliation %}

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

{% endif %} {% if user.country %}

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

{% endif %}
{% 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 %}
{% endfor %} {% endif %}
{% endblock %}