bugfix: " -> " in mails for laptop field
This commit is contained in:
parent
1e665fcc8b
commit
d16c58610e
|
@ -1,5 +1,9 @@
|
||||||
{% autoescape off %}
|
{% autoescape off %}
|
||||||
{% for key, value in data.items %}
|
{% for key, value in data.items %}
|
||||||
|
{% if key == 'laptop' %}
|
||||||
|
{{ key }}: {{ value | safe}}
|
||||||
|
{% else %}
|
||||||
{{ key }}: {{ value }}
|
{{ key }}: {{ value }}
|
||||||
|
{% endif %}
|
||||||
{% endfor %}
|
{% endfor %}
|
||||||
{% endautoescape %}
|
{% endautoescape %}
|
||||||
|
|
Loading…
Reference in New Issue