2025-05-26 22:08:21 -07:00
|
|
|
{% extends "base.html" %}
|
|
|
|
|
|
|
|
|
|
{% block main %}
|
2025-07-08 14:37:03 -07:00
|
|
|
<form method="post" action="{{ settings.root_path }}/databases/add">
|
2025-05-26 22:08:21 -07:00
|
|
|
<button type="submit">Add Database</button>
|
|
|
|
|
</form>
|
|
|
|
|
<table>
|
|
|
|
|
<tbody>
|
|
|
|
|
{% for base in bases %}
|
|
|
|
|
<tr>
|
|
|
|
|
<td>
|
2025-07-08 14:37:03 -07:00
|
|
|
<a href="{{ settings.root_path }}/d/{{ base.id.simple() }}/config">
|
2025-05-26 22:08:21 -07:00
|
|
|
{{ base.name }}
|
|
|
|
|
</a>
|
|
|
|
|
</td>
|
|
|
|
|
</tr>
|
|
|
|
|
{% endfor %}
|
|
|
|
|
</tbody>
|
|
|
|
|
</table>
|
|
|
|
|
{% endblock %}
|