2014-01-22 41 views
0

我想確定我是否發送列表爲空或不..但我得到這個錯誤你不能在HTML /模板中做到這一點?

我的代碼:

{% if {{all_puzzles|length}} = 0 %} 
     <h4 style="text-align: center">No puzzles found :/<br> 
     <a href="/create/" type="button" class="btn btn-default pull-right">Create a Puzzle</a></h4><br> 
{% endif %} 

錯誤:

Template error: 
In template /Users/Jyby/Documents/gpsp/templates/mypuzzles.html, error at line 26 
    Could not parse some characters: |{{all_puzzles||length}} 

回答

1

與嘗試:

{% if all_puzzles|length = 0 %} 

或者你也可以這樣做:

{% if not all_puzzles|length %} 

這會影響相同的條件。

+0

這樣做了,謝謝! :) – user3043594

相關問題