From fba65abde398e97fbb3e3e2d7b6ac2a93424a91d Mon Sep 17 00:00:00 2001 From: eclipse Date: Fri, 18 Apr 2025 16:00:46 +0200 Subject: [PATCH] list of all texts --- the_works/templates/views/texte.html | 30 ++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 the_works/templates/views/texte.html diff --git a/the_works/templates/views/texte.html b/the_works/templates/views/texte.html new file mode 100644 index 0000000..6b4f35e --- /dev/null +++ b/the_works/templates/views/texte.html @@ -0,0 +1,30 @@ +{% extends 'base.html' %} + +{% block title %}Texte{% endblock title %} + +{% block heading %}Texte{% endblock heading %} + +{% block content %} + + + + + + + + + + + + {% for row in rows %} + + + + + + + + {% endfor %} + +
TitelUntertitelReiheTextformOriginalsprache
{{row["Titel"]}}{{row["Untertitel"]}}{{row["Reihe"]}}{{row["Textform"]}}{{row["Originalsprache"]}}
+{% endblock content %} \ No newline at end of file