2025-05-02 23:48:54 -07:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
|
|
{% block main %}
|
|
|
|
|
<table>
|
|
|
|
|
<thead>
|
|
|
|
|
<tr>
|
|
|
|
|
<th>Name</th>
|
2025-05-13 00:02:33 -07:00
|
|
|
<th>OID</th>
|
2025-05-02 23:48:54 -07:00
|
|
|
</tr>
|
|
|
|
|
</thead>
|
|
|
|
|
<tbody>
|
|
|
|
|
{% for relation in relations %}
|
|
|
|
|
<tr>
|
|
|
|
|
<td>{{ relation.relname }}</td>
|
2025-05-13 00:02:33 -07:00
|
|
|
<td>{{ relation.oid }}</td>
|
2025-05-02 23:48:54 -07:00
|
|
|
</tr>
|
|
|
|
|
{% endfor %}
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
{% endblock %}
|