2024-07-14 09:20:09 +02:00
|
|
|
<div class="${title}">
|
2024-06-01 08:48:35 +02:00
|
|
|
<h2>${title}</h2>
|
2024-06-14 19:31:48 +02:00
|
|
|
<table style="border-collapse:collapse;">
|
2024-06-01 08:48:35 +02:00
|
|
|
<thead>
|
|
|
|
<tr>
|
|
|
|
<th tal:repeat="header column_headers">${header}</th>
|
|
|
|
</tr>
|
|
|
|
</thead>
|
2024-06-25 15:20:11 +02:00
|
|
|
<tbody>
|
2024-06-05 11:09:28 +02:00
|
|
|
<tr tal:repeat="item array_2d">
|
2024-06-25 15:20:11 +02:00
|
|
|
<td tal:repeat="cell item">${cell}<span tal:condition="repeat.cell.index == 2">%</span></td>
|
|
|
|
</tr>
|
|
|
|
|
2024-06-01 08:48:35 +02:00
|
|
|
</tbody>
|
|
|
|
</table>
|
2024-07-14 09:20:09 +02:00
|
|
|
</div>
|
2024-06-01 08:48:35 +02:00
|
|
|
|