如果声明使用templatetag

时间:2011-10-01 00:31:33

标签: django django-templates

我如何在django中执行以下操作:

{% if value|truncatewords > 10 %} print this {% endif %}

谢谢。

2 个答案:

答案 0 :(得分:1)

我打赌你想要计算一个字符串中的单词。试试这个:

{% if value|wordcount > 10 %} print this {% endif %}

答案 1 :(得分:0)

这是对truncatewords过滤器的错误使用。您必须在以下时间指定要截断的单词数:

{{ value|truncatewords:10 }}