papi/templates/historique.html

19 lines
306 B
HTML

<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>Historique </title>
</head>
<body style="background: lightgray;">
<p> Changements </p>
{% for changement in lines %}
<p style="{{ coloriser(changement) }}"> {{changement}} </p>
{% endfor %}
</body>
</html>