17 lines
299 B
HTML
17 lines
299 B
HTML
{% extends "base.html" %}
|
|
|
|
{% block main %}
|
|
<table>
|
|
<tbody>
|
|
{% for base in bases %}
|
|
<tr>
|
|
<td>
|
|
<a href="{{ settings.root_path }}/d/{{ base.id.simple() }}/config">
|
|
{{ base.name }}
|
|
</a>
|
|
</td>
|
|
</tr>
|
|
{% endfor %}
|
|
</tbody>
|
|
</table>
|
|
{% endblock %}
|