Spaces:
Sleeping
Sleeping
File size: 827 Bytes
415c6ee |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 |
<!doctype html>
<html lang="en">
<head>
<meta charset="UTF-8">
<title>Text Log</title>
<style>
table {
width: 100%;
border-collapse: collapse;
}
th, td {
border: 1px solid black;
padding: 8px;
text-align: left;
}
th {
background-color: #f2f2f2;
}
</style>
</head>
<body>
<h1>Text Log</h1>
<table>
<thead>
<tr>
<th>Timestamp</th>
<th>IP Hash</th>
<th>Text</th>
</tr>
</thead>
<tbody>
{% for row in log_data %}
<tr>
<td>{{ row[0] }}</td>
<td>{{ row[1] }}</td>
<td>{{ row[2] }}</td>
</tr>
{% endfor %}
</tbody>
</table>
</body>
</html>
|