{# Copyright (C) 2021 TU Wien. 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.BASE_TEMPLATE %} {%- block css %} {{ super() }} {%- endblock css %} {%- from "invenio_app_rdm/landing_page/macros/files.html" import file_list_box, preview_file_box %} {%- from "invenio_app_rdm/landing_page/macros/detail.html" import show_detail %} {%- set record = record.data|serialize_ui %} {%- set metadata = record.metadata %} {%- block page_body %}
{%- block record_body %}
{{ record.ui.publication_date_l10n_long }} {%- if metadata.version %} | Version {{ metadata.version }} {% endif %}
{{ record.ui.resource_type }} {# note: keeping this results in an error, because record.ui has no access_right property here #} {# {{ record.ui.access_right.title }} #}

{{ metadata.title }}

{%- include "invenio_app_rdm/landing_page/details/creators.html" %}

{{ export_format }} Export

          {{- exported_record -}}
          
{%- endblock record_body %}
{% block sidebar %} {%- include "invenio_app_rdm/landing_page/details/side_bar.html" %} {% endblock sidebar %}
{%- endblock page_body %}