{# Copyright (C) 2024-2025 Graz University of Technology. invenio-catalogue-marc21 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 show_author(author) %} {{ author.get("personal_name") }} {%- endmacro %} {% macro show_authors(authors, delimiter="
") %} {% for author in authors %} {% set idx = loop %} {{ show_author(author) | safe }} {% if not loop.last %} {{ delimiter | safe }} {% endif %} {% endfor %} {%- endmacro %} {% set metadata = record.ui.metadata %}