Files
TornActivityTracker/templates/results.html
Michael Beck 026d6742db init
2025-01-31 00:31:25 +01:00

23 lines
457 B
HTML

<!DOCTYPE html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Scraping Results</title>
</head>
<body>
<h1>User Activity Statistics</h1>
<table border="1">
<tr>
<th>Hour</th>
<th>Activity Count</th>
</tr>
{% for hour, count in stats.items() %}
<tr>
<td>{{ hour }}</td>
<td>{{ count }}</td>
</tr>
{% endfor %}
</table>
</body>
</html>