list of all texts
This commit is contained in:
parent
764be702c7
commit
fba65abde3
30
the_works/templates/views/texte.html
Normal file
30
the_works/templates/views/texte.html
Normal 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 %}
|
||||
Loading…
Reference in New Issue
Block a user