django模板中的模数/模数等效运算符/函数?

时间:2011-11-13 05:40:34

标签: django operators templating

我只是在学习django的模板系统并尝试做一些相对微不足道的事情:

<h2>State</h2>
<ul class="states">
{% for state in states %}
   <li class="state_elements" ><a href="/{{ state.name }}/"> {{ state.name }}</a></li>
   {% if forloop.counter \% 3 == 0 %}
   <br style="clear: both"/>
 {% endif %}
{% endfor %}
</ul>

我收到语法错误,因为%是为模板语言保留的符号。这很不幸。

我已经找到了

的部分解决方案
{% cycle "" "" "" '<br style="clear: both"/>' %}

但它让我感到非常奇怪。还有更好的方法吗?

2 个答案:

答案 0 :(得分:26)

<强> divisibleby

如果值可以被参数整除,则返回True。

例如:

{{ value|divisibleby:"3" }}

django template doc

答案 1 :(得分:0)

forlopp计数可除以2

{% if forloop.counter|divisibleby:2 == 0 %}

forloop计数不能被2整除

{% if forloop.counter|divisibleby:2 != 0 %}