{% extends "core/base.html" %} {% load static %} {% load i18n %} {% block title %}{% trans "Editorial Team" %}{% endblock title %} {% block page_title %}{% trans "Editorial Team" %}{% endblock page_title %} {% block body %}

{% trans "Subject Area Editors" %}

{% for subject in subjects %}

{{ subject.name }}

{% for editor in subject.editors.all %}
{% if user.enable_public_profile %} {% endif %}
{{ editor.full_name }}

{{ editor.affiliation }}

{% include "elements/journal/editorial_social_content.html" with user=editor %}
{% endfor %}
{% endfor %} {% endblock body %}