{#
Copyright (C) 2020 CERN.
Copyright (C) 2020 Northwestern University.
Invenio RDM Records is free software; you can redistribute it and/or modify
it under the terms of the MIT License; see LICENSE file for more details.
#}
{% macro crea_contributors_icon(crea_contr) %}
{%- if "orcid" in crea_contr.identifiers %}
{%- elif "ror" in crea_contr.identifiers %}
{# if no identifiers: distinguish btw people and organizations #}
{%- elif crea_contr.type == "organizational" %}
{%- endif %}
{% endmacro %}
{% macro show_crea_contributors(crea_contrors, show_affiliations=False) %}
{% for crea_contr in crea_contrors %}
{{ crea_contributors_icon(crea_contr) }}
{{ crea_contr.name }}
{% for affiliation in crea_contr.affiliations %}
{{ affiliation[0] }}{{ ", " if not loop.last }}
{% endfor %}
{{ "; " if not loop.last }}
{% endfor %}
{%- endmacro %}
{% macro show_affiliations(affiliations) %}
{% for affiliation in affiliations %}
{{ affiliation[0] }} {{'. ' + affiliation[1] }}
{% endfor %} {%- endmacro %}