eva/evapp/templates/evapp/dataloop.txt

10 lines
203 B
Plaintext

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