{% extends "base.html" %} {% block title %}Clusters{% endblock %} {% block content %}

Clusters

{% for cluster in clusters: %} {% else: %} {% endfor %}
Name API URL Labels
{{ cluster.name }} {{ cluster.api.url }} {% for key, val in cluster.labels.items()|sort: %} {{ key }}: {{ val }} {% endfor %}
No clusters found.
{% endblock %}