我只是在学习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"/>' %}
但它让我感到非常奇怪。还有更好的方法吗?
答案 0 :(得分:26)
答案 1 :(得分:0)
forlopp计数可除以2
{% if forloop.counter|divisibleby:2 == 0 %}
forloop计数不能被2整除
{% if forloop.counter|divisibleby:2 != 0 %}