{# # -*- coding: utf-8 -*- # # Copyright (C) 2022 CERN. # Copyright (C) 2025 Northwestern University. # # Invenio App RDM is free software; you can redistribute it and/or modify it # under the terms of the MIT License; see LICENSE file for more details. -#} {%- for entry in entries -%} {{ "ID: %s" | format(entry.file.id) }} {{ "URI: %s" | format(entry.file.uri) }} {%- if 'filename' in entry %} {{ "Name: %s" | format(entry.filename) }} {%- endif %} {{ "Created: %s" | format(entry.file.created) }} {{ "Checksum: %s" | format(entry.file.checksum) }} {{ "Last check: %s" | format(entry.file.last_check_at) }} {%- if 'record' in entry %} {{ "Record: %s" | format(invenio_url_for("invenio_app_rdm_records.record_detail", pid_value=entry.record.id)) }} {%- endif %} {%- if 'draft' in entry %} {{ "Draft: %s" | format(invenio_url_for("invenio_app_rdm_records.deposit_edit", pid_value=entry.draft.id)) }} {%- endif %} {{ "-" * 80 }} {% endfor %}