跳过forloop Django中的特定步骤

时间:2013-04-10 11:59:21

标签: django for-loop skip

我在django模板中使用forloop

{% for image in images %}
{% endfor %}
  

执行10个步骤

但我想跳过第5步并执行剩余 我怎么能这样做,请建议......

2 个答案:

答案 0 :(得分:4)

{% for image in images %}
   {% if forloop.counter != 5 %}
    ...
   {% endif %}
{% endfor %}

https://docs.djangoproject.com/en/dev/ref/templates/builtins/#for

答案 1 :(得分:0)

{% for image in images %}
   {% if forloop.counter0 != 5 %}
    ...
   {% endif %}
{% endfor %}

这对我有用