{% extends "workspace_layout.html" %}
{% block sidebar %}
{% set current_schema = "" %}
{% for table in data %}
{% if table.table_schema != current_schema %}
{% if not loop.first %}{% endif %}
{% set current_schema = table.table_schema %}
{{ table.table_schema }}
{% endif %}
{{ table.table_name }}
{% if loop.last %}{% endif %}
{% endfor %}
{% if data|length == 0 %}
No tables found.
Create Table
{% endif %}
{% endblock %}