{# Copyright (C) 2020 CERN. Copyright (C) 2020 Northwestern University. Copyright (C) 2021 Graz University of Technology. Copyright (C) 2021 New York 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 creatibutor_icon(creatibutor) %} {% set identifier_found = namespace(value=False) %} {% for scheme, identifier in creatibutor.person_or_org.identifiers|groupby("scheme") %} {%- if scheme == "orcid" %} {% set identifier_found.value = True %} ORCID icon {%- elif scheme == "ror" %} {% set identifier_found.value = True %} ROR icon {%- endif %} {% endfor %} {# if no identifiers: distinguish btw people and organizations #} {%- if not identifier_found.value and creatibutor.person_or_org.type == 'organizational'%} {%- endif %} {% endmacro %} {% macro show_creatibutors(creatibutors, show_affiliations=False) %} {% for creatibutor in creatibutors %}
{{ creatibutor_icon(creatibutor) }} {{ creatibutor.person_or_org.name }} {% for affiliation in creatibutor.affiliations %} {{ affiliation[0] }}{{ ", " if not loop.last }} {% endfor %}
{% endfor %} {%- endmacro %} {% macro affiliations_accordion(group, affiliations) %}
{% for affiliation in affiliations %}
{{ affiliation[0] }}. {%- if affiliation[2] %} ROR icon {%- endif %} {{affiliation[1]}}
{% endfor %}
{% endmacro %}