Files
Kontrollverlust/templates/database_table.html
T

10 lines
162 B
HTML

<table>
{% for row in data %}
<tr>
{% for column in row %}
<td>{{ column }}</td>
{% endfor %}
</tr>
{% endfor %}
</table>