20 lines
320 B
HTML
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 %}
|