{% 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 %}