Files
2026-08-27 11:23:01 -06:00

30 lines
1.1 KiB
HTML

{% extends "base.html" %}
{% block title %}Loot · Kematian{% endblock %}
{% block content %}
<div class="page-head">
<div>
<h1>Loot</h1>
<p class="muted">All hosted files (wallets, Steam, Telegram) across every client.</p>
</div>
</div>
<div class="table-card">
<table>
<thead><tr><th>Client</th><th>File</th><th>Type</th><th>Size</th><th></th></tr></thead>
<tbody>
{% for b in blobs %}
<tr>
<td><a href="{{ url_for('client_detail', client_id=b.client_id) }}" class="mono client-link">{{ b.client_id }}</a></td>
<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="5" class="empty">No hosted files yet. They appear when a client reports wallets/Steam/Telegram.</td></tr>
{% endfor %}
</tbody>
</table>
</div>
{% endblock %}