为了账号安全,请及时绑定邮箱和手机立即绑定

Django模板forloop和if条件问题

Django模板forloop和if条件问题

尚方宝剑之说 2023-10-04 15:20:23
如果循环达到7,它将添加或更改td,就像第二张图所示{% for match in matches %}   <tr>      <td class="tblcore">{{match.id}}. {{match.Marking__Marking}}</td>   </tr>{% endfor %}这就是我想要的结果
查看完整描述

1 回答

?
白衣非少年

TA贡献1155条经验 获得超0个赞

tr每隔四列添加一个:


<tr>

{% for match in matches %}

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

    {% if forloop.counter|divisibleby:4 %}

    </tr>

    <tr>

    {% endif %}

{% endfor %}

</tr>


查看完整回答
反对 回复 2023-10-04
  • 1 回答
  • 0 关注
  • 76 浏览

添加回答

举报

0/150
提交
取消
意见反馈 帮助中心 APP下载
官方微信