20 lines
404 B
HTML
20 lines
404 B
HTML
{% 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 %}
|