{% extends "layout.html" %} {% block content %} {% if data['test_instance_list']|count %}
{% for test_instance in data['test_instance_list'] %}

{{ test_instance.name }}

Public ip: {{ test_instance.public_ip }}

Public dns: {{ test_instance.public_dns }}

Private ip: {{ test_instance.private_ip }}

Private dns: {{ test_instance.private_dns }}

{{ test_instance.running_info }}

{% endfor %}
{% else %}

There is no test instance alive!

{% endif %} {% endblock %}