Move html and template files to /opt/mailstats

This commit is contained in:
2024-06-04 10:12:01 +01:00
parent 1dd11f04f1
commit 4a0c17e1c0
5 changed files with 10 additions and 6 deletions

View File

@@ -0,0 +1,15 @@
<h2>${title}</h2>
<table border="1">
<thead>
<tr>
<th tal:repeat="header column_headers">${header}</th>
</tr>
</thead>
<tbody>
<tr tal:repeat="item array_2d.items()">
<td>${item[0]}</td>
<td>${item[1]}</td>
</tr>
</tbody>
</table>