{% extends "base.html" %} {% block title %}Dados - engineer_kit{% endblock %} {% block content %}

Dados

Tabelas existentes no DuckDB deste workspace.

{% if tables %} {% for t in tables %} {% endfor %}
SchemaTabelaLinhas
{{ t.schema }} {{ t.table }} {{ "{:,}".format(t.rows) }} Ver amostra
{% else %}
Nenhuma tabela ainda — rode um pipeline primeiro.
{% endif %} {% endblock %}