38 lines
858 B
HTML
38 lines
858 B
HTML
![]() |
<!DOCTYPE html>
|
||
|
<html lang="en">
|
||
|
<head>
|
||
|
<meta charset="UTF-8">
|
||
|
<meta name="viewport" content="width=device-width, initial-scale=1.0">
|
||
|
<title>MySQL Database Entries</title>
|
||
|
<style>
|
||
|
table {
|
||
|
border-collapse: collapse;
|
||
|
width: 100%;
|
||
|
}
|
||
|
th, td {
|
||
|
border: 1px solid #dddddd;
|
||
|
text-align: left;
|
||
|
padding: 8px;
|
||
|
}
|
||
|
</style>
|
||
|
</head>
|
||
|
<body>
|
||
|
<h1>SQLite Database Entries</h1>
|
||
|
<table>
|
||
|
<tr>
|
||
|
<th>Name</th>
|
||
|
<th>Position</th>
|
||
|
<!-- Add more table headers if needed -->
|
||
|
</tr>
|
||
|
{% for entry in entries %}
|
||
|
<tr>
|
||
|
<td>{{ entry[0] }}</td>
|
||
|
<td>{{ entry[1] }}</td>
|
||
|
<!-- Access more columns if needed -->
|
||
|
</tr>
|
||
|
{% endfor %}
|
||
|
</table>
|
||
|
</body>
|
||
|
</html>
|
||
|
|