{% with state=cluster.get_state %}
{{ cluster.cluster_name }}
{% if state == "Disconnected" or state == "Out-of-sync" %}
{% if display_warnings %}
{% endif %}
{% endif %}
|
{% if state == "Disconnected" %}
✗
{% else %}
✓
{% endif %}
|
{{ cluster.get_managed_interfaces|length }}
|
{{ cluster.node_set.count }} |
{% if state == "Disconnected" %}
-
{% else %}
{% if state == "Syncing" %}
{% endif %}
{{ state }}
{% endif %}
|
{% endwith %}
|