flask neu in develop
This commit is contained in:
19
flask/renderhtml/templates/students.html
Normal file
19
flask/renderhtml/templates/students.html
Normal 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
|
Reference in New Issue
Block a user