{% extends 'core/base/base.html' %} {% comment %} SPDX-FileCopyrightText: 2022 Helmholtz-Zentrum Dresden-Rossendorf (HZDR) SPDX-License-Identifier: GPL-3.0-or-later {% endcomment %} {% load static %} {% block content %}
Projects {% if project.label %}{{ project.label }}{% else %}New Project{% endif %} Digital Objects

Digital Objects

{% for selection in filter_categories.items %}
{% endfor %} {% if other_category_exists %}
{% endif %}
{% if digital_objects %} {% for obj in digital_objects %} {% endfor %}
ID Persistent ID Label
{{ obj.pk }} {{ obj.persistent_id }} {% if not obj.category_in_persistent_id %} {% endif %} {% if obj.label %} {{ obj.label }} {% elif obj.description %} {{ obj.description }} {% else %} a {{ obj.category_str }} {% endif %}
{% csrf_token %} Edit
{% endif %} {% if digital_relations %}
The project is related to the following objects via relation: {% for rel in digital_relations %} {% endfor %}
ID Persistent ID Relation Category Label
{{ rel.object.pk }} {{ rel.object.persistent_id }} {{ rel.predicate.label }} {{ rel.object.category_str }} {{ rel.object.label }}
{% endif %} Edit Project Relations

Add a Digital Object

Update a Digital Object

{% if digital_object %} {% endif %} {% endblock %} {% block script %} {% endblock %}