- Full implementation of runs, recipes, cache routers with templates - Auth and storage routers fully migrated - Jinja2 templates for all L1 pages - Service layer for auth and storage 🤖 Generated with [Claude Code](https://claude.com/claude-code) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
111 lines
4.3 KiB
HTML
111 lines
4.3 KiB
HTML
{% extends "base.html" %}
|
|
|
|
{% block title %}{{ cache.hash[:16] }} - Cache - Art-DAG L1{% endblock %}
|
|
|
|
{% block content %}
|
|
<div class="max-w-4xl mx-auto">
|
|
<!-- Header -->
|
|
<div class="flex items-center space-x-4 mb-6">
|
|
<a href="/media" class="text-gray-400 hover:text-white">← Media</a>
|
|
<h1 class="text-xl font-bold font-mono">{{ cache.hash[:24] }}...</h1>
|
|
</div>
|
|
|
|
<!-- Preview -->
|
|
<div class="bg-gray-800 rounded-lg border border-gray-700 mb-6 overflow-hidden">
|
|
{% if cache.media_type and cache.media_type.startswith('image/') %}
|
|
<img src="/cache/{{ cache.hash }}/raw" alt=""
|
|
class="w-full max-h-96 object-contain bg-gray-900">
|
|
|
|
{% elif cache.media_type and cache.media_type.startswith('video/') %}
|
|
<video src="/cache/{{ cache.hash }}/raw" controls
|
|
class="w-full max-h-96 bg-gray-900">
|
|
</video>
|
|
|
|
{% elif cache.media_type and cache.media_type.startswith('audio/') %}
|
|
<div class="p-8 bg-gray-900">
|
|
<audio src="/cache/{{ cache.hash }}/raw" controls class="w-full"></audio>
|
|
</div>
|
|
|
|
{% elif cache.media_type == 'application/json' %}
|
|
<div class="p-4 bg-gray-900 max-h-96 overflow-auto">
|
|
<pre class="text-sm text-gray-300">{{ cache.content_preview }}</pre>
|
|
</div>
|
|
|
|
{% else %}
|
|
<div class="p-8 bg-gray-900 text-center text-gray-500">
|
|
<div class="text-4xl mb-2">{{ cache.media_type or 'Unknown type' }}</div>
|
|
<div>{{ cache.size_bytes | filesizeformat if cache.size_bytes else 'Unknown size' }}</div>
|
|
</div>
|
|
{% endif %}
|
|
</div>
|
|
|
|
<!-- Metadata -->
|
|
<div class="grid grid-cols-2 gap-4 mb-6">
|
|
<div class="bg-gray-800 rounded-lg p-4">
|
|
<div class="text-gray-500 text-sm">Hash</div>
|
|
<div class="font-mono text-sm text-white break-all">{{ cache.hash }}</div>
|
|
</div>
|
|
<div class="bg-gray-800 rounded-lg p-4">
|
|
<div class="text-gray-500 text-sm">Content Type</div>
|
|
<div class="text-white">{{ cache.media_type or 'Unknown' }}</div>
|
|
</div>
|
|
<div class="bg-gray-800 rounded-lg p-4">
|
|
<div class="text-gray-500 text-sm">Size</div>
|
|
<div class="text-white">{{ cache.size_bytes | filesizeformat if cache.size_bytes else 'Unknown' }}</div>
|
|
</div>
|
|
<div class="bg-gray-800 rounded-lg p-4">
|
|
<div class="text-gray-500 text-sm">Created</div>
|
|
<div class="text-white">{{ cache.created_at or 'Unknown' }}</div>
|
|
</div>
|
|
</div>
|
|
|
|
<!-- IPFS -->
|
|
{% if cache.ipfs_cid %}
|
|
<div class="bg-gray-800 rounded-lg p-4 mb-6">
|
|
<div class="text-gray-500 text-sm mb-1">IPFS CID</div>
|
|
<div class="flex items-center justify-between">
|
|
<span class="font-mono text-sm text-white">{{ cache.ipfs_cid }}</span>
|
|
<a href="https://ipfs.io/ipfs/{{ cache.ipfs_cid }}"
|
|
target="_blank"
|
|
class="text-blue-400 hover:text-blue-300 text-sm">
|
|
View on IPFS Gateway →
|
|
</a>
|
|
</div>
|
|
</div>
|
|
{% endif %}
|
|
|
|
<!-- Related Runs -->
|
|
{% if cache.runs %}
|
|
<h2 class="text-lg font-semibold mb-4">Related Runs</h2>
|
|
<div class="space-y-2">
|
|
{% for run in cache.runs %}
|
|
<a href="/run/{{ run.run_id }}"
|
|
class="block bg-gray-800 rounded p-3 hover:bg-gray-750 transition-colors">
|
|
<div class="flex items-center justify-between">
|
|
<span class="font-mono text-sm">{{ run.run_id[:16] }}...</span>
|
|
<span class="text-gray-500 text-sm">{{ run.created_at }}</span>
|
|
</div>
|
|
</a>
|
|
{% endfor %}
|
|
</div>
|
|
{% endif %}
|
|
|
|
<!-- Actions -->
|
|
<div class="flex items-center space-x-4 mt-8">
|
|
<a href="/cache/{{ cache.hash }}/raw"
|
|
download
|
|
class="bg-blue-600 hover:bg-blue-700 px-4 py-2 rounded font-medium">
|
|
Download
|
|
</a>
|
|
{% if not cache.ipfs_cid %}
|
|
<button hx-post="/cache/{{ cache.hash }}/publish"
|
|
hx-target="#publish-result"
|
|
class="bg-gray-700 hover:bg-gray-600 px-4 py-2 rounded font-medium">
|
|
Publish to IPFS
|
|
</button>
|
|
<span id="publish-result"></span>
|
|
{% endif %}
|
|
</div>
|
|
</div>
|
|
{% endblock %}
|