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

17 lines
420 B
Plaintext
Raw Normal View History

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">
2024-06-01 08:48:35 +02:00
<td>${item[0]}</td>
<td>${item[1]}</td>
<td>${item[2]}%</td>
2024-06-01 08:48:35 +02:00
</tr>
</tbody>
</table>