This commit is contained in:
root
2025-08-28 21:45:02 +02:00
commit fe932e7a9f
10 changed files with 1906 additions and 0 deletions

16
templates/stats.html Normal file
View File

@@ -0,0 +1,16 @@
<!-- templates/stats.html -->
<!DOCTYPE html>
<html>
<head>
<title>Statistics</title>
</head>
<body>
<h1>Download Statistics</h1>
<table>
<tr><th>URL</th><th>Hits</th></tr>
{% for url, count in stats.items() %}
<tr><td>{{ url }}</td><td>{{ count }}</td></tr>
{% endfor %}
</table>
</body>
</html>