{% 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 %}
{{ cluster.ip|join:', ' }}
{% trans "Connection Examples" %}
redis-cli -h {{ ip }}
{% endif %} {% endwith %}
{% endblock %}