phonograph/interim-server/templates/list_bases.html
2025-07-08 14:37:03 -07:00

20 lines
422 B
HTML

{% extends "base.html" %}
{% block main %}
<form method="post" action="{{ settings.root_path }}/databases/add">
<button type="submit">Add Database</button>
</form>
<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 %}