{% extends "base.html" %} {% block body %}

Actions

{% if vm['qmpstatus'] == 'stopped' %} {% if not usage_check %} {% else %} Insufficient resources to start VM. {% endif %} {% endif %} {% if vm['qmpstatus'] == 'paused' %} {% endif %} {% if vm['qmpstatus'] == 'running' or vm['qmpstatus'] == 'paused' %} {% if vm['qmpstatus'] == 'running' %} {% endif %} {% endif %} {% if vm['qmpstatus'] == 'stopped' %} {% else %} To delete VM, power it off. {% endif %}

Resources

VM Details

Name
{{ vm['name'] }}
DNS Name
{{ vm['name'] }}.csh.rit.edu
ID
{{ vm['vmid'] }}
Status
{{ vm['qmpstatus'] }}
Cores
{{ vm['config']['cores'] * vm['config'].get('sockets', 1) }} {% if vm['qmpstatus'] == 'running' or vm['qmpstatus'] == 'paused' %} {% else %} {% endif %}
Memory
{{ vm['config']['memory'] // 1024 }}GB {% if vm['qmpstatus'] == 'running' or vm['qmpstatus'] == 'paused' %} {% else %} {% endif %}
Expiration
{{ vm['expire'] }}
{% endblock %}