{% extends "base.html" %} {% set section = "modules" %} {% block title %}New module — step 2{% endblock %} {% block content %} {% include "_wizard_steps.html" %}
Step 2 — browse tables on {{ connection.name }} driver: {{ driver_kind }} ← change connection
{% for f in browse_fields %} {% endfor %}
Schemas loading…
{% if fetch_error %}
Browse failed
{{ fetch_error }}
{% elif attempted %}
Tables {{ tables|length }} found {% if tables %} {% endif %}
{% if tables %}
{% for name, val in qvals.items() %} {% endfor %} {% for t in tables %} {% endfor %}
kind schema name qualified
{{ t.kind }} {{ t.schema }} {{ t.name }} {{ t.full_name }}
{% else %}
No tables matched those qualifiers.
{% endif %}
{% elif not required_ok %}
Waiting
Fill in the required qualifier(s) above, then click Browse.
{% endif %} {% endblock %}