Files
kematianc2/panel/templates/loot.html
T
2026-08-27 11:23:01 -06:00

33 lines
1.3 KiB
HTML

{% extends "base.html" %}
{% block title %}Loot · {{ client_id }} · Kematian{% endblock %}
{% block content %}
<div class="page-head">
<div>
<h1>Files <span class="accent">· {{ client_id }}</span></h1>
<p class="muted">Hosted login files (wallets, Steam, Telegram) — click to download.</p>
</div>
<div class="head-actions">
<a class="btn btn-primary" href="{{ url_for('loot_zip', client_id=client_id) }}">Download all (.zip)</a>
<a class="btn btn-ghost" href="{{ url_for('client_detail', client_id=client_id) }}">Back to client</a>
</div>
</div>
<div class="table-card">
<table>
<thead><tr><th>File</th><th>Type</th><th>Size</th><th></th></tr></thead>
<tbody>
{% for b in blobs %}
<tr>
<td class="mono"><a href="{{ url_for('loot_download', client_id=b.client_id, blob_id=b.id) }}">{{ b.filename }}</a></td>
<td><span class="tag">{{ b.category or '—' }}</span></td>
<td class="mono">{{ (b.size | filesize) }}</td>
<td><a class="btn btn-ghost btn-sm" href="{{ url_for('loot_download', client_id=b.client_id, blob_id=b.id) }}">Download</a></td>
</tr>
{% else %}
<tr><td colspan="4" class="empty">No hosted files for this client yet.</td></tr>
{% endfor %}
</tbody>
</table>
</div>
{% endblock %}