26 lines
763 B
HTML
26 lines
763 B
HTML
<!DOCTYPE html>
|
|
<html>
|
|
<head>
|
|
<title>Database Tables</title>
|
|
<meta charset="utf-8" />
|
|
<link rel="stylesheet" type="text/css" href="{{ url_for('static', filename='styles.css')}}" />
|
|
<link rel="shortcut icon" href="{{ url_for('static', filename='icons/favicon.ico') }}">
|
|
</head>
|
|
<body>
|
|
<h1>Database Tables</h1>
|
|
<ul>
|
|
{% for key, value in tables.items() %}
|
|
<li>
|
|
<strong>{{ key }}</strong>:<br>
|
|
<ul>
|
|
{% for column in value.columns %}
|
|
<li>{{ column.name }} - {{ column.type }}</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</li>
|
|
{% endfor %}
|
|
</ul>
|
|
</body>
|
|
</html>
|
|
<!DOCTYPE html>
|
|
<html> |