Modifications

This commit is contained in:
2022-12-31 11:33:44 +01:00
parent 23d5d0d20d
commit d2397191a0
8 changed files with 55 additions and 8 deletions

11
templates/logs.html Normal file
View File

@@ -0,0 +1,11 @@
<head>
<title>Fichier de texte</title>
</head>
<body>
<h1>Fichier de texte</h1>
<ul>
{% for line in lines %}
<li>{{ line }}</li>
{% endfor %}
</ul>
</body>