在Django中从for循环创建新的for循环

时间:2020-05-08 01:18:41

标签: python django

如果您看下面的代码,您将完全理解我想要的。即使我只得到符合此条件的汽车数量也足够。或者,如果我们可以从符合此条件的汽车中创建一个新的循环,那就太好了。

{% for car in cars %}
    {% if car.color == 'white' %}
            create new for loop from white cars
            or
            give me the numbers of white cars
    {% endif %}
{% endfor %}

0 个答案:

没有答案