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

16 lines
385 B
Plaintext
Raw Normal View History

<div class="${title}">
2024-06-01 07:48:35 +01:00
<h2>${title}</h2>
2024-06-14 18:31:48 +01:00
<table style="border-collapse:collapse;">
2024-06-01 07:48:35 +01:00
<thead>
<tr>
<th tal:repeat="header column_headers">${header}</th>
</tr>
</thead>
<tbody>
2024-06-05 10:09:28 +01:00
<tr tal:repeat="item array_2d">
2025-01-02 09:50:44 +00:00
<td tal:repeat="cell item">${cell}</td>
</tr>
2024-06-01 07:48:35 +01:00
</tbody>
</table>
2025-01-02 09:50:44 +00:00
</div>