{% extends "base.html" %} {% block body %}
{% if not vms %}

It looks like you don't have any VMs! If you want to create a VM, click here.

{% else %} {% for vm in vms %}

{{ vm['name'] }}

Status: {{ vm['status'] }}

{% endfor %} {% endif %}
{% endblock %}