I am creating a report and want to add lines to a table. I have a python process that will create a linea with the <td> tags inside. However, this:
<table width="100%">
<th></th>
<th class="text-right">Ctd.</th>
<th class="text-right">Importe</th>
<t t-foreach="docs.filtra_pedidos(c)" t-as="l">
<tr t-esc="l"></tr>
</t>
</table>
renders into this:
how can I get the <td> inside the <tr>tags?