{% extends 'virtualization/virtualmachine/base.html' %} {% load buttons %} {% load static %} {% load helpers %} {% load plugins %} {% block content %}
Virtual Machine
Name {{ object }}
Status {% badge object.get_status_display bg_color=object.get_status_color %}
Role {{ object.role|linkify|placeholder }}
Platform {{ object.platform|linkify|placeholder }}
Tenant {% if object.tenant.group %} {{ object.tenant.group|linkify }} / {% endif %} {{ object.tenant|linkify|placeholder }}
Primary IPv4 {% if object.primary_ip4 %} {{ object.primary_ip4.address.ip }} {% if object.primary_ip4.nat_inside %} (NAT for {{ object.primary_ip4.nat_inside.address.ip }}) {% elif object.primary_ip4.nat_outside %} (NAT: {{ object.primary_ip4.nat_outside.address.ip }}) {% endif %} {% else %} {% endif %}
Primary IPv6 {% if object.primary_ip6 %} {{ object.primary_ip6.address.ip }} {% if object.primary_ip6.nat_inside %} (NAT for {{ object.primary_ip6.nat_inside.address.ip }}) {% elif object.primary_ip6.nat_outside %} (NAT: {{ object.primary_ip6.nat_outside.address.ip }}) {% endif %} {% else %} {% endif %}
{% include 'inc/panels/custom_fields.html' %} {% include 'inc/panels/tags.html' %} {% include 'inc/panels/comments.html' %} {% plugin_left_page object %}
Cluster
Cluster {% if object.cluster.group %} {{ object.cluster.group|linkify }} / {% endif %} {{ object.cluster|linkify }}
Cluster Type {{ object.cluster.type }}
Resources
Virtual CPUs {{ object.vcpus|placeholder }}
Memory {% if object.memory %} {{ object.memory|humanize_megabytes }} {% else %} {% endif %}
Disk Space {% if object.disk %} {{ object.disk }} GB {% else %} {% endif %}
Services
{% if services %} {% for service in services %} {% include 'ipam/inc/service.html' %} {% endfor %}
{% else %} None {% endif %}
{% if perms.ipam.add_service %} {% endif %}
{% include 'inc/panels/contacts.html' %} {% plugin_right_page object %}
{% plugin_full_width_page object %}
{% endblock %}