{% extends 'atlas/base.html' %} {% block content_container_class %}container-fluid content-wide px-3{% endblock %} {% block content %}

Search Uploaded And Imported DICOMs

Admin-only tool for searching pending uploads and imported Atlas data by hash, series UID, or study UID.

Clear
All searches are case-insensitive and support partial matches. Study UID matching now uses indexed Atlas series data.
{% if hash_query or series_query or study_query %}

Found {{ uploads_result_count }} pending upload{{ uploads_result_count|pluralize }} and {{ imported_result_count }} imported image{{ imported_result_count|pluralize }} and {{ matched_series_result_count }} existing Atlas series.

Existing Atlas series

{% if matched_series_page_obj.object_list %}
{% for series in matched_series_page_obj.object_list %} {% endfor %}
Series Series UID Cases Links
{{ series }} {{ series.series_instance_uid|default:'-' }} {{ series.case.count }} View series
{% if matched_series_page_obj.paginator.num_pages > 1 %} {% endif %} {% else %}
No existing Atlas series matched the current search.
{% endif %}

Pending uploads

{% if uploads_page_obj.object_list %}
{% for dicom in uploads_page_obj.object_list %} {% endfor %}
Hash Uploaded User Series UID Links
{{ dicom.image_blake3_hash }} {{ dicom.created_date }} {{ dicom.user }} {{ dicom.series_instance_uid|default:"-" }} {% if dicom.series_instance_uid %} View series uploads {% else %} - {% endif %}
{% if uploads_page_obj.paginator.num_pages > 1 %} {% endif %} {% else %}
No pending uploads matched the current search.
{% endif %}

Imported Atlas images

{% if imported_page_obj.object_list %}
{% for image in imported_page_obj.object_list %} {% endfor %}
Hash Image ID Series Series UID Links
{{ image.image_blake3_hash }} {{ image.pk }} {% if image.series %} {{ image.series }} {% else %} - {% endif %} {% if image.series and image.series.series_instance_uid %} {{ image.series.series_instance_uid }} {% else %} - {% endif %} {% if image.series %} View series {% else %} - {% endif %}
{% if imported_page_obj.paginator.num_pages > 1 %} {% endif %} {% else %}
No imported Atlas images matched the current search.
{% endif %} {% else %}
Enter a hash, series UID, or study UID to search uploads and existing imports.
{% endif %} {% endblock %}