ComicOPDS/templates/start.html

10 lines
154 B
HTML
Raw Normal View History

2022-07-13 13:53:16 +02:00
<table id="comics">
{% for i in result %}
<tr>
{% for j in range(0,9) %}
<td>{{ i[j] }}</td>
{% endfor %}
</tr>
{% endfor %}
</table>