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

{% trans "Connection Information" %}


{% with cluster.ip.0 as ip %}
{% trans "Host" %}
{% if not ip %}
{% trans "Not Assigned" %}
{% else %}
{{ ip }}
{% trans "Connection Examples" %}
cqlsh {{ ip }} 9042
{% endif %} {% endwith %}
{% endblock %}