bugfix: " -> " in mails for laptop field

This commit is contained in:
Benni Bärmann 2021-04-08 10:06:01 +02:00
parent 1e665fcc8b
commit d16c58610e
2 changed files with 4 additions and 3 deletions

3
TODO
View File

@ -1,3 +0,0 @@
known bugs:
html problem in mails: 14" -> 14"

View File

@ -1,5 +1,9 @@
{% autoescape off %}
{% for key, value in data.items %}
{% if key == 'laptop' %}
{{ key }}: {{ value | safe}}
{% else %}
{{ key }}: {{ value }}
{% endif %}
{% endfor %}
{% endautoescape %}