phonograph/templates/tmp.html
2025-05-13 00:02:33 -07:00

20 lines
320 B
HTML

{% extends "base.html" %}
{% block main %}
<table>
<thead>
<tr>
<th>Name</th>
<th>OID</th>
</tr>
</thead>
<tbody>
{% for relation in relations %}
<tr>
<td>{{ relation.relname }}</td>
<td>{{ relation.oid }}</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endblock %}