Files
photo-pipeline/dashboard/templates/_card.html

22 lines
1.1 KiB
HTML

{% set sha8 = item["sha256"][:8] %}
<div class="card" id="card-{{ sha8 }}">
<a href="/file/{{ item["sha256"] }}" target="_blank">
{% if item["thumb"] %}
<img src="{{ item["thumb"] }}" loading="lazy" alt="">
{% else %}
<div style="aspect-ratio:1;display:flex;align-items:center;justify-content:center;color:#555;font-size:2rem;"></div>
{% endif %}
</a>
<div class="meta">
{{ item["name"] }}<br>
<span class="badge {{ item["status"] }}">{{ item["status"] }}</span>
<span style="color:#666"> · {{ item["source"] }}</span>
{% if item["size_mb"] %}<span style="color:#666"> · {{ item["size_mb"] }}MB</span>{% endif %}
</div>
<div class="actions">
<button class="approve" hx-post="/review/{{ item["sha256"] }}/approve" hx-target="#card-{{ sha8 }}" hx-swap="outerHTML">✅ Keep</button>
<button class="reject" hx-post="/review/{{ item["sha256"] }}/reject" hx-target="#card-{{ sha8 }}" hx-swap="outerHTML">🗑 Reject</button>
<button class="reset" hx-post="/review/{{ item["sha256"] }}/reset" hx-target="#card-{{ sha8 }}" hx-swap="outerHTML"></button>
</div>
</div>