{% extends "base.html" %} {% set section = "connections" %} {% block title %}Connections — Pipekit{% endblock %} {% block content %}
Connections {{ connections|length }} total New connection…
{% if connections %} {% for c in connections %} {% endfor %}
name driver jdbc url default dest
{{ c.name }} {{ c.driver_kind }} {{ c.jdbc_url }} {{ c.default_dest_schema or '—' }} edit ·
{% else %}
No connections yet.
{% endif %}
Registered drivers {{ drivers|length }} JDBC drivers available
{% if drivers %} {% for d in drivers %} {% endfor %}
kindnamejarclass
{{ d.kind }} {{ d.name }} {{ d.jar_file }} {{ d.class_name }}
{% else %}
No drivers registered.
{% endif %}
{% endblock %}