{# SPDX-License-Identifier: MIT SPDX-FileCopyrightText: 2023 CERN. SPDX-FileCopyrightText: 2025 Graz University of Technology. SPDX-FileCopyrightText: 2026 TU Wien #} {# Render an organization as a link to its ROR page if it has a ROR ID, or as plaintext #} {%- macro render_organization(org) %} {%- set ns = namespace(ror_id="") %} {%- for identifier in org.identifiers %} {%- if identifier.scheme == "ror" %} {%- set ns.ror_id = identifier.identifier %} {{ ror_id }} {%- endif %} {%- endfor %} {%- if ns.ror_id %} {{ org.name }} {%- else %} {{ org.name }} {%- endif %} {%- endmacro %} {% extends "invenio_communities/details/base.html" %} {% from "invenio_communities/details/macros/custom_fields.html" import list_vocabulary_values, list_string_values, show_custom_field %} {% set active_community_header_menu_item= 'about' %} {%- block page_body %} {{ super() }}