added dataloop to templates

This commit is contained in:
Benni Bärmann 2021-01-06 12:02:02 +01:00
parent 552d56bdd2
commit 77a7563e22
3 changed files with 5 additions and 4 deletions

View File

@ -1,3 +1 @@
blurb
{{data}}
{% include 'evapp/dataloop.txt' %}

View File

@ -1 +1 @@
blarb
{% include 'evapp/dataloop.txt' %}

View File

@ -0,0 +1,3 @@
{% for key, value in data.items %}
{{ key }}: {{ value }}
{% endfor %}