{% extends "master.html" %} {% load ui %} {% load humanize %} {% block sidebar %} {% var as related_pages %} {"pages": [ {"url": "{% url "ui-management" %}", "title": "Management"}, {"url": "{% url "storage-manage" %}", "title": "Storage Management"}, {"url": "{% url "data-collections-manage" %}", "title": "Collection Management"} ]} {% endvar %} {{ block.super }} {% endblock %} {% block content %}

Find Records without Media

This feature finds the record identifiers of all records in the selected collection that do not have at least one media object from the selected storage attached.
{% csrf_token %}
{{ form.collection.label }} {{ form.collection }}
{{ form.storage.label }} {{ form.storage }}
Note: this may take a long time.
{% if analyzed %}

{{ identifiers|length|intcomma }} Identifier{{ identifiers|length|pluralize }} for {{ records|length|intcomma }} Record{{ records|length|pluralize }} without Media

{% ifnotequal records|length identifiers|length %}
Note: Not all unique identifiers could be found. This could be caused by incomplete metadata or a missing mapping of a field to the Dublin Core Identifier field.
{% endifnotequal %}
{% for id in identifiers %}{{ id }}
{% empty %}No identifiers found.{% endfor %}
{% endif %} {% endblock %}