{#
Copyright (C) 2020 CERN.
Copyright (C) 2020 Northwestern University.
Copyright (C) 2021 Graz University of Technology.
Copyright (C) 2021-2022 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 %}
{%- elif scheme == "ror" %}
{% set identifier_found.value = True %}
{%- elif scheme == "gnd" %}
{% 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, type="creators") %}
{% for creatibutor in creatibutors %}