23 lines
560 B
XML
23 lines
560 B
XML
<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>
|