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