Does not 404
This commit is contained in:
parent
dce90e6621
commit
e39fa666cd
|
@ -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>
|
||||
|
Loading…
Reference in New Issue