Files
adlist_mikrotik/templates/stats.html
2025-08-28 21:45:02 +02:00

17 lines
345 B
HTML

<!-- 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>