smeserver-mailstats/mailstats.html.pt

23 lines
548 B
XML

<html>
<head>
<title>${title}</title>
</head>
<body>
<h1>${title}</h1>
<table border="1">
<thead>
<tr>
<th>Date/Hour</th>
<th tal:repeat="header column_headers" tal:content="header">Header</th>
</tr>
</thead>
<tbody>
<tr tal:repeat="row array_2d">
<td tal:content="repeat.row.index">Hour</td>
<td tal:repeat="cell row" tal:content="cell">Cell</td>
</tr>
</tbody>
</table>
</body>
</html>