Contributors

{% if template_data.contributors %} {% set longlist = template_data.contributors|length > 6 %}
    {% if longlist %}
  • {% endif %} {% for contributor in template_data.contributors %}
  • {{contributor.foreignKey | human_name_filter}}
    {% if contributor.affiliations %}
    {{contributor.affiliations[0].foreignKey.name}}
    {% endif %}
  • {% endfor %}
{% if longlist %}
Show all contributors
{% endif %}
{% endif %} {% set contactPerson = template_data.contributors | selectattr("isContactPerson", "equalto", True) | first %} {% if contactPerson %}
Contact person
{{contactPerson.foreignKey | human_name_filter }}
{% if contactPerson.affiliations %} {{contactPerson.affiliations[0].foreignKey.name}} {% endif %}
{% endif %}