{% extends "special_issue/base.html" %} {% block breadcrumb %}
  • Home
  • {{ issue.title }}
  • People
  • {% endblock breadcrumb %} {% block content %}

    People


    {% if members|length > 0 %}
    {% for role, member in members %}

    {{ role }}

    {% for m in member %} {% if m.profile.avatar %}
    {% if m.profile.affiliation.name and m.profile.affiliation.city and m.profile.affiliation.country %}

    {{ m.profile.first_name }} {{ m.profile.last_name }}, {{ m.profile.affiliation.name }}, {{ m.profile.affiliation.city }}, {{ m.profile.affiliation.country }}

    {% else %}

    {{ m.profile.first_name }} {{ m.profile.last_name }}

    {% endif %}

    {{ m.profile.user.email }}

    {{ m.profile.bio }}

    {% else %}
    {% if m.profile.affiliation.name and m.profile.affiliation.city and m.profile.affiliation.country %}

    {{ m.profile.first_name }} {{ m.profile.last_name }}, {{ m.profile.affiliation.name }}, {{ m.profile.affiliation.city }}, {{ m.profile.affiliation.country }}

    {% else %}

    {{ m.profile.first_name }} {{ m.profile.last_name }}

    {% endif %}

    {{ m.profile.user.email }}

    {{ m.profile.bio }}

    {% endif %} {% endfor %}
    {% endfor %}
    {% else %}

    There are no members registered in {{ issue.title }}

    {% endif %}
    {% endblock content %}