Does not 404

This commit is contained in:
Colin Goutte 2021-10-01 16:01:21 +02:00
parent dce90e6621
commit e39fa666cd
1 changed files with 28 additions and 0 deletions

28
templates/historique.html Normal file
View File

@ -0,0 +1,28 @@
<!DOCTYPE html>
<html lang="fr">
<head>
<meta charset="UTF-8">
<title>Email de notificaiton</title>
</head>
<body style="background: lightgray;">
<p> Destinataires {{ ''.join(data['recipients']) }} </p>
{% if data['changements'] %}
<p> Changements </p>
{% for changement in data['changements'] %}
<p style="{{ coloriser(changement) }}"> {{changement}} </p>
{% endfor %}
{% endif %}
{% if data['status'] %}
<p> État courant </p>
{% for status in data['status'] %}
<p style="{{ coloriser(status) }}"> {{status}} </p>
{% endfor %}
{% endif %}
</body>
</html>