{% extends "project/databases/_detail_overview.html" %} {% load i18n sizeformat %} {% block connection_info %}

{% trans "Connection Information" %}


{% with instance.host as host %}
{% trans "Host" %}
{% if not host %}
{% trans "Not Assigned" %}
{% else %}
{{ host }}
{% trans "Database Port" %}
3306
{% trans "Connection Examples" %}
mysql -h {{ host }} -u {% trans "USERNAME" %} -p
mysql://{% trans "USERNAME" %}:{% trans "PASSWORD" %}@{{ host }}:3306/{% trans "DATABASE"%}
{% endif %} {% endwith %}
{% endblock %}