{% extends "base.html" %} {% block body %}
{% if rtp and rtp_view != True %}

{{ rtp_view }}

{% endif %} {% if not vms %}

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

{% elif vms == 'INACTIVE' %}

Only active members have access to create Proxmox VMs. If you believe this is an error, please contact an RTP.

{% elif rtp_view != True %} {% for vm in vms %}

{{ vm['name'] }}

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

{% endfor %} {% else %} {% for pool in vms %}

{{ pool['user'] }}

{{ pool['num_vms'] }}
CPU
{% if pool['percents']['cpu'] <= 50 %}
{% elif pool['percents']['cpu'] <= 75 %}
{% else %}
{% endif %}
MEM
{% if pool['percents']['mem'] <= 50 %}
{% elif pool['percents']['mem'] <= 75 %}
{% else %}
{% endif %}
DISK
{% if pool['percents']['disk'] <= 50 %}
{% elif pool['percents']['disk'] <= 75 %}
{% else %}
{% endif %}
{% if not pool['vms'] %} {% endif %}
{% endfor %} {% endif %}
{% endblock %}