18082025
All checks were successful
test / build-docs (push) Successful in -1m26s

This commit is contained in:
2025-08-18 16:08:22 +02:00
parent a692ac8b05
commit 6678aed520
11 changed files with 179 additions and 5 deletions

View File

@@ -25,7 +25,26 @@
</select>
&nbsp;
<button type="submit"> Eingabe </button>
</form>
<br>
<table border="1" width="50%">
<tr>
<th>Id</th>
<th>Name</th>
<th>Genre</th>
<th>Regie</th>
<th>Medium</th>
</tr>
{% for list_all in data_all %}
<tr>
<td>{{list_all.get("id")}}</td>
<td>{{list_all.get("titel")}}</td>
<td>{{list_all.get("genre")}}</td>
<td>{{list_all.get("regie")}}</td>
<td>{{list_all.get("medium")}}</td>
</tr>
{% endfor %}
</table>
{% endblock %}