{% extends "dashboard.html" %} {% block head %} {% endblock %} {% 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() }}
{% set can_delete_instance = is_ui_api_method(instance['method']) %}
{% set delete_tooltip_key = 'tooltip.disabled_readonly' if user_readonly else ('tooltip.disabled_db_readonly' if is_readonly else ('tooltip.disabled_by_method' if not can_delete_instance else 'tooltip.button.delete_instance')) %} {% set delete_tooltip_options = '{"method": "' ~ instance['method'] ~ '"}' if not can_delete_instance and not is_readonly else '{"hostname": "' ~ instance['hostname'] ~ '"}' %}
{% if not is_readonly %} {% endif %} {% endblock %} {% block scripts %} {% endblock %}