12 lines
198 B
HTML
12 lines
198 B
HTML
<head>
|
|
<title>Fichier de texte</title>
|
|
</head>
|
|
<body>
|
|
<h1>Fichier de texte</h1>
|
|
<ul>
|
|
{% for log in logs %}
|
|
<p>{{ log }}</p>
|
|
{% endfor %}
|
|
</ul>
|
|
</body>
|