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

22 lines
566 B
Plaintext
Raw Normal View History

2025-03-28 05:42:48 +00:00
<div class="${classname}">
2024-06-01 07:48:35 +01:00
<h2>${title}</h2>
2025-03-28 05:42:48 +00:00
<tal:block condition="threshold != 0">
<span class='greyed-out'>Display threshold set to ${threshold}%</span>
</tal:block>
<tal:block condition="threshold == 0">
<br>
</tal:block>
<table class="bordercollapse">
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>