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

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

{% if cache.mime_type and cache.mime_type.startswith('image/') %} {% elif cache.mime_type and cache.mime_type.startswith('video/') %} {% elif cache.mime_type and cache.mime_type.startswith('audio/') %}
{% elif cache.mime_type == 'application/json' %}
{{ cache.content_preview }}
{% else %}
{{ cache.mime_type or 'Unknown type' }}
{{ cache.size | filesizeformat if cache.size else 'Unknown size' }}
{% endif %}
CID
{{ cache.cid }}
Content Type
{{ cache.mime_type or 'Unknown' }}
Size
{{ cache.size | filesizeformat if cache.size 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
{% endblock %}