{% extends "core/base/no_message_base.html" %} {% comment %} SPDX-FileCopyrightText: 2022 Helmholtz-Zentrum Dresden-Rossendorf (HZDR) SPDX-License-Identifier: GPL-3.0-or-later {% endcomment %} {% load static %} {% load qr_code %} {% block content %} {% if digitalobject.deleted %}
This digital object was deleted.
{% endif %} {% if digitalobject.label_is_public %}

{{ digitalobject.label }}

{% else %}

Landing Page

{% endif %}
QR code for URL {{ digitalobject.identifier_link }}
Visit API Download QR Code
{% csrf_token %}
{% if digitalobject.persistent_id %}

Identifier

{{ digitalobject.identifier_label }} {{ digitalobject.identifier_display }}
Namespace {{ digitalobject.category_str }}
Digital Object ID {{ digitalobject.digital_object_id }}
{% endif %}
{% for key, values in attributes_by_category %}

{% if key %} {{ key }} {% else %} Properties {% endif %}

{% for key_value in values %} {% endfor %}
{{ key_value.label }} {{ key_value.as_html }} {% if has_write_permission %} {% if key_value.public_settable %} {% elif key_value.is_public %} This attribute is always public {% else %} This attribute can not be public yet. Please ask your HELIPORT admin to implement this. {% endif %} {% endif %}
{% endfor %} {% if has_write_permission %} {% endif %}
{% endblock content %}