spotdlweb/templates/logs.html
2022-12-31 11:33:44 +01:00

12 lines
199 B
HTML

<head>
<title>Fichier de texte</title>
</head>
<body>
<h1>Fichier de texte</h1>
<ul>
{% for line in lines %}
<li>{{ line }}</li>
{% endfor %}
</ul>
</body>