Artifact Operations
Data Artifact Management
This browser surface restores artifact intake, search, download, and artifact-set
workflows while keeping the current Dewey visual system and backend contracts.
Register {{ register_report|length }}
Artifacts {{ artifact_search_result["total"] }}
Artifact Sets {{ artifact_set_search_result["total"] }}
{% if register_report %}
Status
Source
Artifact
Storage
Artifact Set
{% for row in register_report %}
{% if row.status == "success" %}
success
{% else %}
error
{% endif %}
{{ row.source or row.detail }}
{{ row.artifact_euid or row.detail }}
{{ row.storage_uri or row.detail }}
{{ row.artifact_set_euid or "none" }}
{% endfor %}
{% else %}
No register/upload/import run yet.
{% endif %}
{% if bulk_report %}
Row
Status
Artifact
Storage
Detail
{% for row in bulk_report %}
{{ row.row_number }}
{% if row.status == "success" %}
success
{% else %}
error
{% endif %}
{{ row.artifact_euid or "n/a" }}
{{ row.storage_uri or "n/a" }}
{{ row.detail or "" }}
{% endfor %}
{% else %}
No bulk TSV run yet.
{% endif %}
Search
Export TSV
Export JSON
{{ artifact_search_result["total"] }} matches
{{ artifact_search_result["timing_ms"] }} ms
{% if artifact_search_result["items"] %}
Download Selected
Download ZIP
Create Artifact Set From Selection
Create Set
{% else %}
Run an artifact search to inspect and act on matching records.
{% endif %}
{% if artifact_share_results %}
{% for row in artifact_share_results %}
{{ row.share_reference_euid }}
Target {{ row.target_euid }}
{% endfor %}
{% endif %}
{% if artifact_set_create_result %}
{{ artifact_set_create_result.artifact_set_euid }}
{{ artifact_set_create_result.member_count }} members
{{ artifact_set_create_result.artifact_set_type }}
{{ artifact_set_create_result.label or "No label" }}
{% endif %}
{% if artifact_set_share_result %}
{{ artifact_set_share_result.transport }}
{{ artifact_set_share_result.status }}
{{ artifact_set_share_result.member_count }} members
{% if artifact_set_share_result.connection %}
{{ artifact_set_share_result.connection.endpoint }}
user {{ artifact_set_share_result.connection.username }}
{% if artifact_set_share_result.connection.bucket %}
bucket {{ artifact_set_share_result.connection.bucket }}
{% endif %}
{% endif %}
{% if artifact_set_share_result.manifest %}
Artifact
Status
Link
{% for item in artifact_set_share_result.manifest %}
{{ item.artifact_euid }}
{{ item.status }}
{% if item.access_url %}
Open
{% else %}
{{ item.detail or "n/a" }}
{% endif %}
{% endfor %}
{% endif %}
{% endif %}
Search
Export TSV
Export JSON
{% if artifact_set_search_result["items"] %}
Share Selected Artifact Set
Share Set
{% else %}
Run an artifact-set search to review or share matching sets.
{% endif %}
{% if recent_artifacts %}
Artifact
Type
Mode
Producer
Status
Storage
{% for item in recent_artifacts %}
{{ item.artifact_euid }}
{{ item.original_filename or item.key }}
{{ item.artifact_type }}
{{ item.import_mode or "register" }}
{{ item.producer_system or "n/a" }}
{% if item.storage_status == "verified" %}
verified
{% elif item.storage_status in ["missing", "error"] %}
{{ item.storage_status }}
{% else %}
{{ item.storage_status or "registered" }}
{% endif %}
{{ item.storage_uri }}
{% endfor %}
{% else %}
No recent artifacts yet.
{% endif %}