phonograph/templates/list_rels.html
Brent Schroeter ced7eced4a sqlx etc
2025-05-26 22:08:29 -07:00

17 lines
301 B
HTML

{% extends "base.html" %}
{% block main %}
<table>
<tbody>
{% for rel in rels %}
<tr>
<td>
<a href="{{ base_path }}/d/{{ base.id.simple() }}/r/{{ rel.oid.0 }}">
{{ rel.relname }}
</a>
</td>
</tr>
{% endfor %}
</tbody>
</table>
{% endblock %}