猿问

Django模板forloop和if条件问题

如果循环达到7,它将添加或更改td,就像第二张图所示


{% for match in matches %}

   <tr>

      <td class="tblcore">{{match.id}}. {{match.Marking__Marking}}</td>

   </tr>

{% endfor %}

这就是我想要的结果

https://img.mukewang.com/651d12870001912305630303.jpg


尚方宝剑之说
浏览 78回答 1
1回答

白衣非少年

tr每隔四列添加一个:<tr>{% for match in matches %}&nbsp; &nbsp; <td class="tblcore">{{match.id}}. {{match.Marking__Marking}}</td>&nbsp; &nbsp; {% if forloop.counter|divisibleby:4 %}&nbsp; &nbsp; </tr>&nbsp; &nbsp; <tr>&nbsp; &nbsp; {% endif %}{% endfor %}</tr>
随时随地看视频慕课网APP

相关分类

Html5
我要回答