{# 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 list_entities(entities) %} {% for entity in entities %} {# TODO: Revisit when more than ORCiD accepted #} {%- if "Orcid" in entity.identifiers %} {%- elif "ror" in entity.identifiers %} {# TODO: Use ROR icon when they come up with one #} {# if no identifiers: distinguish btw people and organizations #} {%- elif entity.type == "Organizational" %} {%- else %} {%- endif %} {{entity.name}} {% endfor %} {%- endmacro %}