mirror of
https://github.com/PhoenixTwoFive/karaoqueue.git
synced 2025-05-20 03:21:47 +02:00
30 lines
519 B
HTML
30 lines
519 B
HTML
<!doctype html>
|
|
<html>
|
|
|
|
<body>
|
|
|
|
<h1>Hello!</h1>
|
|
<table>
|
|
<tr>
|
|
<th scope="col">Name</th>
|
|
<th scope="col">Song</th>
|
|
<th scope="col">Künstler</th>
|
|
</tr>
|
|
{% for entry in list: %}
|
|
<tr>
|
|
<td>
|
|
{{ entry[0] }}
|
|
</td>
|
|
<td>
|
|
{{ entry[1] }}
|
|
</td>
|
|
<td>
|
|
{{ entry[2] }}
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</table>
|
|
|
|
</body>
|
|
|
|
</html> |