Select final, but dirty

This commit is contained in:
2019-07-04 17:13:16 +02:00
parent d28ba44acc
commit 8b8545e5b9
9 changed files with 248 additions and 66 deletions

6
templates/dbs.html Normal file
View File

@@ -0,0 +1,6 @@
<h2>DB Schema for {_db}</h2>
{_schema}
<h3>Tables:</h3>
{_tables}
<hr>
<div>Result: {_status}</div>

2
templates/error.html Normal file
View File

@@ -0,0 +1,2 @@
<h1>ERROR</h1>
<p>{_error}</p>

6
templates/schema.html Normal file
View File

@@ -0,0 +1,6 @@
<h2>DB Schema for {_db}</h2>
{_schema}
<h3>Tables:</h3>
{_tables}
<hr>
<div>Result: {_status}</div>

6
templates/table.html Normal file
View File

@@ -0,0 +1,6 @@
<h2>DB '{_db}' / Table '{_table}'</h2>
<div>
{_rows}
</div>
<hr>
<div>Result: {_status}</div>