Trying to start a webui

This commit is contained in:
FrederikBaerentsen 2022-07-13 13:53:16 +02:00
parent 2b19398465
commit 40f521543a
1 changed files with 9 additions and 0 deletions

9
templates/start.html Normal file
View File

@ -0,0 +1,9 @@
<table id="comics">
{% for i in result %}
<tr>
{% for j in range(0,9) %}
<td>{{ i[j] }}</td>
{% endfor %}
</tr>
{% endfor %}
</table>