{% extends 'explorer/base.html' %} {% block sql_explorer_content %}

{% if object %}Edit{% else %}Create New{% endif %} Connection

{% if object.is_upload %} The source of this connection is an uploaded file. In all likelihood you should not be editing it. {% endif %}
{% csrf_token %}
{{ form.alias }} Required. How the connection will appear in SQL Explorer.
{{ form.engine }}
{{ form.name }} Required. The name of the database itself.
{{ form.user }}
{{ form.password }}
{{ form.host }}
{{ form.port }}
{{ form.extras }} Optionally provide JSON that will get merged into the final connection object. The result should be a valid Django database connection dictionary. This is somewhat rarely used.
Cancel
{% endblock %}