phonograph/templates/list_bases.html

21 lines
404 B
HTML
Raw Normal View History

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