Django模板中可以使用布尔逻辑吗?
我想做一些类似这样的事情:
{% if ("view_video" in video_perms) OR purchase_override %}
这可能吗?
1 个回答
41
提供给你:
{% if user in users %}
If users is a QuerySet, this will appear if user is an
instance that belongs to the QuerySet.
{% endif %}
和
{% if a == b or c == d and e %}
要注意的是,and
的优先级比or
高,而且不能使用括号。如果需要的话,可以使用嵌套的代码块。