{# Copyright (C) 2021 CERN. Copyright (C) 2023 TU Wien. 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. #} {% extends config.THEME_ERROR_TEMPLATE %} {%- set title = _("Tombstone") + " | " + config.THEME_SITENAME -%} {%- set removal_reason = _("Reason unknown") %} {%- if record.ui.tombstone.removal_reason %} {%- set removal_reason = record.ui.tombstone.removal_reason.title_l10n %} {%- endif %} {%- block message %}

{{ _('Gone') }}

{%- trans sitename=config.THEME_SITENAME %} The record you are trying to access was removed from {{ sitename }}. The metadata of the record is kept for archival purposes. {%- endtrans %}

{{ _("Reason for removal:") }} {{ removal_reason }}

{{ _("Removed by:") }} {{ record.ui.tombstone.removed_by }}

{%- if record.ui.tombstone.note %}

{{ _("Removal note:") }} {{ record.ui.tombstone.note }}

{%- endif %}

{{ _("Date of removal:") }} {{ record.ui.tombstone.removal_date_l10n_long }}

{%- if removal_reason != "Spam" %}

{{ _("Citation:") }} {{ record.ui.tombstone.citation_text }}

{%- endif %} {%- if record.pids.doi %}

{{ _("Identifier:") }} {{ record.pids.doi.identifier }}

{%- endif %}
{% endblock message %}