{% extends "admin/base_site.html" %} {% load static %} {% block extrastyle %} {% endblock %} {% block content %}

Discover Database Tables

Total Tables: {{ tables|length }} Unconfigured: 0 Already Configured: 0 Selected: 0
Filters:
{% csrf_token %}
{% for table in tables %}
{{ table.full_table_name }} {{ table.schema }}
{% if table.is_configured %} Already Configured {% endif %} {% if table.rls_enabled %} RLS Enabled {% else %} RLS Disabled {% endif %} {% if table.force_rls %} Force RLS {% endif %}
{% if table.table_comment %}
{{ table.table_comment }}
{% endif %}
{% empty %}

No tables found in the database.

{% endfor %}
{% endblock %}