Spaces:
Sleeping
Sleeping
| <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> | |