list of all texts

This commit is contained in:
eclipse 2025-04-18 16:00:46 +02:00
parent 764be702c7
commit fba65abde3

View File

@ -0,0 +1,30 @@
{% extends 'base.html' %}
{% block title %}Texte{% endblock title %}
{% block heading %}Texte{% endblock heading %}
{% block content %}
<table>
<thead>
<tr>
<th>Titel</th>
<th>Untertitel</th>
<th>Reihe</th>
<th>Textform</th>
<th>Originalsprache</th>
</tr>
</thead>
<tbody>
{% for row in rows %}
<tr>
<td>{{row["Titel"]}}</td>
<td>{{row["Untertitel"]}}</td>
<td>{{row["Reihe"]}}</td>
<td>{{row["Textform"]}}</td>
<td>{{row["Originalsprache"]}}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endblock content %}