{% extends "base.html" %} {% block content %} {% if instances|length == 0 %}
No instance to show
{% else %} {% for instances_batched in instances|batch(2) %} {% for instance in instances_batched %}
{% if instance.health %}
{% endif %} {% if not instance.health %}
{% endif %}
{{ instance.name }}

TYPE

{{ instance._type }}

HOSTNAME

{{ instance.hostname }}

{% if instance._type == "local" and instance.health %} {% endif %} {% if not instance._type == "local" and instance.health %} {% endif %} {% if instance._type == "local" and not instance.health or not instance._type == "local" and not instance.health%} {% endif %}
{% endfor %} {% endfor %} {% endif %} {% endblock %}