{% extends "base.html" %} {% set active_page = "vm" %} {% block content %}
{% for domain in domains %}
{% if domain.state == "Running" %}
{% else %}
{% endif %}

{{ domain.name}}

uuid: {{ domain.uuid}}
state: {{ domain.state }}
{#Buttons#} {% if domain.state == "Running" %} {#Shutdown#} Shutdown {#Pause#} Pause {#Destroy#} Destroy {% elif domain.state == "Paused" %} {#Resume#} Resume {#Destroy#} Destroy {% elif domain.state == "Shutoff" %} {#Start#} Start {% else %} No links {% endif %}
{% endfor %}
{% endblock %}