{% extends 'base/layout.html' %} {% block content %}

Virtual Machines and Containers


{% if proxmox.nodes %}

Nodes

{% for node in proxmox.nodes %} {% endfor %}
Node Name Node status changed Cluster changed Interface changed Update result
{% if node.node_id %} {{ node.name }} {% else %} {{ node.name }} {% endif %} {% if node.status %} {{ node.status }} {% else %} {{ node.status }} {% endif %} {% if node.cluster %} {{ node.cluster }} {% else %} {{ node.cluster }} {% endif %} {% if node.interfaces %} {{ node.interfaces }} {% else %} {{ node.interfaces }} {% endif %} {% if node.result %} {{ node.result }} {% else %} {{ node.result }} {% endif %}


{% endif %} {% if proxmox.virtualmachines %}

Virtual Machines and Containers

{% for virtualmachine in proxmox.virtualmachines %} {% endfor %}
VM/CT Name Status changed Custom Fields Local context Resources Tag Update result
{% if virtualmachine.vm_id %} {{ virtualmachine.name }} {% else %} {{ virtualmachine.name }} {% endif %} {% if virtualmachine.status %} {{ virtualmachine.status }} {% else %} {{ virtualmachine.status }} {% endif %} {% if virtualmachine.custom_fields %} {{ virtualmachine.custom_fields }} {% else %} {{ virtualmachine.custom_fields }} {% endif %} {% if virtualmachine.local_context %} {{ virtualmachine.local_context }} {% else %} {{ virtualmachine.local_context }} {% endif %} {% if virtualmachine.resources %} {{ virtualmachine.resources }} {% else %} {{ virtualmachine.resources }} {% endif %} {% if virtualmachine.tag %} {{ virtualmachine.tag }} {% else %} {{ virtualmachine.tag }} {% endif %} {% if virtualmachine.result %} {{ virtualmachine.result }} {% else %} {{ virtualmachine.result }} {% endif %}


{% endif %}

{{ proxmox_json }}
{% endblock %} {% block footer_links %} {{ block.super }} {% include "netbox_proxbox/footer.html" %} {% endblock %}