{# Copyright (C) 2019 CERN. Copyright (C) 2019 Northwestern University, Galter Health Sciences Library & Learning Center. 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. #} {%- extends config.RECORDS_UI_BASE_TEMPLATE %} {%- macro record_content(data) %} {% for key, value in data.items() recursive %}
  • {% if value is mapping %} {{ key }}: {% elif value is iterable and value is not string %} {{ key }}:
      {% for item in value %}
    1. {% if item is mapping %}
        {{ record_content(item) }}
      {% else %} {{ item }} {% endif %}
    2. {% endfor %}
    {% else %} {{ key }}: {{ value }} {% endif %}
  • {% endfor %} {%- endmacro %} {%- block page_body %}

    {{record.title}}

    {%- endblock %}