flask neu in develop

This commit is contained in:
2023-06-08 19:26:49 +02:00
parent 9e78b44184
commit dd7d747a99
14 changed files with 1063 additions and 0 deletions

View File

@@ -0,0 +1,19 @@
<!DOCTYPE html>
<html lang='de'>
<head>
<meta charset='utf-8' />
<title>Schüler</title>
</head>
<body>
<p>
Schülerverzeichnis
</p>
<ul>
{% for s in schueler %}
<li>{{s['name']}}, {{s['vorname']}}</li>
{%endfor %}
</ul>
</body>
</html