phonograph/templates/list_rels.html

18 lines
301 B
HTML
Raw Normal View History

2025-05-26 22:08:21 -07:00
{% 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 %}