{% extends "admin/base_site.html" %} {% block content %}
{% csrf_token %} {{ form }}
{% if vms %}
{% for vm in vms %} {% endfor %}
ID Name Memory Status User Name Actions
{{vm.id}} {{vm.name}} {{vm.template.memory}} {{vm.str_state}} {{vm.uname}} {% if vm.str_state == 'ACTIVE' %} Stop VM {% elif vm.str_state == 'STOPPED' %}    Start VM {% endif %}    Delete VM
{% else %}

You do not have any VM.

{% endif %} {% endblock %}