eva/evapp/templates/evapp/dataloop.txt

10 lines
203 B
Plaintext
Raw Normal View History

{% autoescape off %}
2021-01-06 11:02:02 +00:00
{% for key, value in data.items %}
{% if key == 'laptop' %}
{{ key }}: {{ value | safe}}
{% else %}
2021-01-06 11:02:02 +00:00
{{ key }}: {{ value }}
{% endif %}
2021-01-06 11:02:02 +00:00
{% endfor %}
{% endautoescape %}