{% 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._type == "local" %} {% if instance.health %} {% else %} {% endif %} {% else %} {% endif %}
{{ instance.name }}
{% endfor %}
{% endfor %} {% endif %}
{% endblock %}