{{ user.full_name }}
{% if roles %}
{% trans "Roles" %}:
{% for role in roles %}
{{ role.role.name }}{% if not forloop.last %}, {% endif %}
{% endfor %}
{% trans "Editorial groups" %}:
{% for membership in editorial_groups %}
{{ membership.group.name }}
{% endfor %}
{% trans "Staff roles" %}:
{{ staff_groups.first.job_title }}
{% comment %}No support yet for multiple staff groups{% endcomment %}
{% trans "Affiliation" %}:
{{ user.affiliation }}
{% trans "Country" %}:
{{ user.country }}
{% 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 %}