模板中需要循环中循环,{% for i in alist %}
,假如i是个元组或列表,需要继续循环:
{% for i in alist %} {% with temp=I %} {% for k in temp %} … {% endfor %} {% endwith %} {%endfor%}
|
或使用如下方式,data = [[1,2],[3,4]]:
{% for l in data%}
{% for temp in l % } {% if forloop.first % } '{{temp}}', {% else %} {{temp}} {% endif %} {% endfor %}
{%endfor%}
|