{% extends "base.html" %} {% block title %}{{ cache.hash[:16] }} - Cache - Art-DAG L1{% endblock %} {% block content %}
← Media

{{ cache.hash[:24] }}...

{% if cache.media_type and cache.media_type.startswith('image/') %} {% elif cache.media_type and cache.media_type.startswith('video/') %} {% elif cache.media_type and cache.media_type.startswith('audio/') %}
{% elif cache.media_type == 'application/json' %}
{{ cache.content_preview }}
{% else %}
{{ cache.media_type or 'Unknown type' }}
{{ cache.size_bytes | filesizeformat if cache.size_bytes else 'Unknown size' }}
{% endif %}
Hash
{{ cache.hash }}
Content Type
{{ cache.media_type or 'Unknown' }}
Size
{{ cache.size_bytes | filesizeformat if cache.size_bytes else 'Unknown' }}
Created
{{ cache.created_at or 'Unknown' }}
{% if cache.ipfs_cid %}
IPFS CID
{{ cache.ipfs_cid }} View on IPFS Gateway →
{% endif %} {% if cache.runs %}

Related Runs

{% for run in cache.runs %}
{{ run.run_id[:16] }}... {{ run.created_at }}
{% endfor %}
{% endif %}
Download {% if not cache.ipfs_cid %} {% endif %}
{% endblock %}