如何在django中将变量字符串与字符串进行比较?

时间:2015-11-29 14:06:11

标签: django django-templates

我试图这样做:

{% ifnotequal slider.title "" %}
<div class="dev-caption-big">
{{ slider.titulo }}
</div>
{% endifnotequal %}

但是这不应该创建div,因为变量string(slider.titulo)是空的。

如何比较?

1 个答案:

答案 0 :(得分:0)

你需要比现在更好的检查,试试这个:

{% if slider.titulo|length > 0 %}
   <div class="dev-caption-big">
       {{ slider.titulo }}
   </div>
{% endif %}