Django模板forloop和if条件问题

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


{% for match in matches %}

   <tr>

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

   </tr>

{% endfor %}

https://img4.mukewang.com/651d12780001b1ee03260951.jpg

这就是我想要的结果

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


尚方宝剑之说
浏览 77回答 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,查看更多内容
随时随地看视频慕课网APP

相关分类

Html5