2

我想在我的模板中对 query_set 长度设置条件。我的查询集被命名为“favoris”这是我尝试过的:

    {% if favoris.count>=5 %}
     my html
    {% endif %}

我得到这个错误:

     TemplateSyntaxError at /mysite/myview
     Could not parse the remainder: '==5' from 'favoris.count==5'

关于如何做到这一点的任何想法?谢谢您的帮助

4

1 回答 1

6

You should write whitespaces between constant and operator:

{% if favoris.count >= 5 %}
于 2012-11-06T10:33:04.217 回答