{%ifchanged使用两个字段%}

时间:2014-10-23 20:35:41

标签: django django-templates

有没有办法在django中执行以下操作?

{% for item in items %}
    {% ifchanged item.territory, item.price %}
        {{ item }}
    {% endifchanged %}
{% endfor %}

1 个答案:

答案 0 :(得分:0)

是的,您可以在模板中添加and,它可以正常运行:

{% for item in items %}
    {% ifchanged item.territory and item.price %}
        {{ item }}
    {% endifchanged %}
{% endfor %}