{% extends 'core/base.html' %} {% load i18n %} {% block content %}

{% trans "Digital Objects" %}

{% if digital_objects %} {% for obj in digital_objects %} {% endfor %}
ID {% trans "Handle" %} {% trans "Relation" %} {% trans "Category" %} {% trans "Description" %}
{{ obj.digital_object_id }} {{ obj.handle }} {{ obj.relation }} {{ obj.category }} {{ obj.description }} {% trans "Edit" %}
{% endif %}
{% if update == False %}

{% trans 'Add a Digital Object' %}

{% else %}

{% trans 'Update a Digital Object' %}

{% endif%}
{% csrf_token %} {% if not update %}
   
{% endif %}
{% trans "Relation" %}
{% trans "Handle" %}
{% trans "Category" %}
{% trans "Description" %}
{% if update %} {% trans "Cancle" %} {% endif %}
{% endblock %} {% block script %} {% endblock %}