smeserver-mailstats/root/opt/mailstats/templates/mailstats-sub-table.html.pt

18 lines
440 B
Plaintext
Raw Normal View History

<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>
<tbody>
2024-06-05 11:09:28 +02:00
<tr tal:repeat="item array_2d">
<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>
</div>
2024-06-01 08:48:35 +02:00