{% extends '_base.html' %} {% load helpers %} {% block content %}
{% if perms.virtualization.change_virtualmachine %} Edit this VM {% endif %} {% if perms.virtualization.delete_virtualmachine %} Delete this VM {% endif %}

{% block title %}{{ vm }}{% endblock %}

{% include 'inc/created_updated.html' with obj=vm %}
Virtual Machine
Name {{ vm.name }}
Cluster {{ vm.cluster }}
{% include 'inc/custom_fields_panel.html' with custom_fields=vm.get_custom_fields %}
Comments
{% if vm.comments %} {{ vm.comments|gfm }} {% else %} None {% endif %}
{% endblock %}