{# Copyright (C) 2020 CERN. Copyright (C) 2020 Northwestern University. 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. #} {%- from "invenio_app_rdm/records/macros/version.html" import show_version %} {#
{{ _('Metrics')}}

{%- include "invenio_app_rdm/landing_page/details/stats.html" %}
#}
{{ _('Versions')}}

{%- if config.get("APP_RDM_RECORD_EXPORTERS") -%} {# if no export formats are specified, don't bother showing the box #}
{{ _('Export')}}

{# dynamically create the list of export formats #} {%- for fmt, val in config.get("APP_RDM_RECORD_EXPORTERS", {}).items() -%} {%- set name = val.get("name", fmt) -%} {% if is_preview %} {%- set export_url = url_for('invenio_app_rdm_records.record_export', pid_value=record.id, export_format=fmt, preview=1) -%} {% else %} {%- set export_url = url_for('invenio_app_rdm_records.record_export', pid_value=record.id, export_format=fmt) -%} {% endif %} {{ name }} {%- endfor -%}
{%- endif -%}