blob: 8ce4a137d0ea822704bbef1dfe6a1fa2c54ce8c8 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
|
{% extends "base.html.j2" %}
{% block content %}
<div id="container">
{% include "frag_aside.html.j2" %}
<main id="main">
<table>
<thead>
<tr>
{% for field_name in field_names %}
<th>{{ field_name }}</th>
{% endfor %}
</tr>
</thead>
<tbody>
{% for row in rows %}
<tr>
{% for field in row %}
<td>{{ field }}</td>
{% endfor %}
</tr>
{% endfor %}
</tbody>
</table>
</main>
</div>
{% endblock %}
|