{#
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 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 %}
{%- elif scheme == "ror" %}
{% set identifier_found.value = True %}
{%- 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 %}
{{ "; " if not loop.last }}
{% endfor %}
{%- endmacro %}
{% macro show_affiliations(affiliations) %}
{% for affiliation in affiliations %}
{{ affiliation[0] }} {{'. ' + affiliation[1] }}
{% endfor %} {%- endmacro %}