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

17 lines
396 B
Plaintext
Raw Normal View History

2024-06-01 08:48:35 +02:00
<h2>${title}</h2>
<table border="1">
<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">
2024-06-01 08:48:35 +02:00
<td>${item[0]}</td>
<td>${item[1]}</td>
2024-06-05 11:09:28 +02:00
<td>${item[2]}</td>
2024-06-01 08:48:35 +02:00
</tr>
</tbody>
</table>