{% extends "base.html" %} {% block title %}Dashboard - DeeBase Admin{% endblock %} {% block content %} {% if tables %}
{% for table in tables %}

{{ table }}

View and manage records

{% endfor %}
{% else %}

No tables found in the database.

Create tables using the CLI:

deebase table create users id:int name:str email:str --pk id
{% endif %} {% endblock %}