{% extends "dashboard.html" %} {% block content %}

Loading instances...

{% for instance in instances %} {% endfor %} TZ:
Hostname Name Method Health Type Created Last Seen Actions
{{ instance.hostname }} {{ instance.name }} {{ instance.method }} {% if instance.status == "up" %} Up {% elif instance.status == "loading" %} Loading {% else %} {{ instance.status | title }} {% endif %}
{% if instance.type == "container" %}  Container {% elif instance.type == "pod" %}  Pod {% else %}  Static {% endif %}
{{ instance.creation_date.astimezone().isoformat() }} {{ instance.last_seen.astimezone().isoformat() }}
{% if not is_readonly %} {% endif %} {% endblock %}