{% extends "base.html" %} {% set section = "modules" %} {% block title %}New module — step 1{% endblock %} {% block content %} {% include "_wizard_steps.html" %}
Step 1 — pick a source connection the database we'll copy data from
{% if connections %}
{% for c in connections %} {% endfor %}
name driver jdbc_url
{{ c.name }} {{ c.driver_kind }} {{ c.jdbc_url }}
cancel
{% else %}
No connections yet. Add one to begin.
{% endif %}
{% endblock %}