{% extends 'base.html' %} {% block content %}
{% csrf_token %}

{% block title %} {% if object.pk %} Editing Proxmox VM - {{object}} {% else %} Add a new Proxmox VM {% endif %} {% endblock %}

Virtual Machine
{% for field in form %}
{{ field }} {% if field.help_text %} {{ field.help_text|safe }} {% endif %}
{% endfor %}
{% if object.pk %} Cancel {% else %} Cancel {% endif %}
{% endblock %}