phonograph/templates/tmp.html

19 lines
267 B
HTML
Raw Normal View History

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