17 lines
310 B
HTML
17 lines
310 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block main %}
|
|
<table>
|
|
<tbody>
|
|
{% for rel in rels %}
|
|
<tr>
|
|
<td>
|
|
<a href="{{ settings.root_path }}/d/{{ base.id.simple() }}/r/{{ rel.oid.0 }}">
|
|
{{ rel.relname }}
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% endblock %}
|