{% extends "base.html" %} {% block title %}FileShare · Kematian{% endblock %} {% block content %}

FileShare

Hosted login files (wallets, Steam, Telegram) + your own uploads. Click a file to download, or copy its direct link.

Upload a file

Uploaded files are stored under panel/loot/upload/ and get a shareable link.

Hosted files ({{ blobs|length }})

{% for b in blobs %} {% else %} {% endfor %}
ClientFileTypeSize
{% if b.client_id == 'upload' %}upload{% else %}{{ b.client_id }}{% endif %} {{ b.filename }} {{ b.category or '—' }} {{ (b.size | filesize) }} Download
No files shared yet.

Clients with files

{% for cid, items in by_client.items() %}
{{ 'your uploads' if cid == 'upload' else cid }}
{{ items }} file{{ '' if items == 1 else 's' }}
{% else %}

No client has hosted files.

{% endfor %}
{% endblock %}