smeserver-mailstats/mailstats.html.pt

23 lines
560 B
Plaintext
Raw Normal View History

2024-05-29 17:46:58 +02:00
<html>
<head>
<title>2D Array Display</title>
</head>
<body>
<h1>2D Array Contents</h1>
<table border="1">
<thead>
<tr>
<th>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>