It's possible to do
{% for ab in mylist %}
{{ab.0}}
{{ab.1}}
{% endfor %}
but you cannot make a call to zip
within the for
structure. You'll have to store the zipped list in another variable first, then iterate over it.
jellybean
2010-03-10 10:02:28