17 lines
345 B
HTML
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>
|