HTML表格未显示,但我希望它成为

问题描述 投票:0回答:1

我想制作一个HTML表时遇到问题,因为尝试做时会出现在许多正方形中,我希望将其放在最后。为了更好地理解两张关于我当前的外观和我想要的图像。

目前是:

“

应该如何:

“

HTML

<t t-foreach="i.detalle_documento_ids" t-as="o">
  <tr>
    <td>
      <span t-esc="o.cuenta_id.titulo" />
    </td>
    <td>
      <span t-esc="o.fecha" />
    </td>
    <td>
      <span t-esc="o.razon_social_id.nombre" />
    </td>
    <td>
      <span t-esc="o.total_debe" />
    </td>
    <td>
      <span t-esc="o.total_haber" />
    </td>
    <th>
     <td colspan="3" align="center">Saldo</td>
      <td colspan="2"><b>Proxim</b></td>
    </th>
  </tr>
</t>
html
1个回答
1
投票

您必须在循环表之后或当前表的[[脚注部分中创建新的余额表tr]

© www.soinside.com 2019 - 2024. All rights reserved.