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

22 lines
566 B
XML

<div class="${classname}">
<h2>${title}</h2>
<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">
<thead>
<tr>
<th tal:repeat="header column_headers">${header}</th>
</tr>
</thead>
<tbody>
<tr tal:repeat="item array_2d">
<td tal:repeat="cell item">${cell}</td>
</tr>
</tbody>
</table>
</div>