{% extends 'base.html' %} {% load static %} {% block navbar %} {% include 'snippet.navlinks.html' %} {% endblock %} {% block content %}
{% include 'machines/detail/snippets/machinetitle.html' %}
{% csrf_token %} {{ form.system.errors }}
{{ form.system }} {{ form.system.help_text }}
{{ form.architecture.errors }}
{{ form.architecture }} {{ form.architecture.help_text }}
{{ form.ram_amount.errors }}
{{ form.ram_amount }} {{ form.ram_amount.help_text }}
{{ form.image.errors }}
{{ form.image }} {{ form.image.help_text }}
{{ form.disk_size.errors }}
{{ form.disk_size }} {{ form.disk_size.help_text }}
{{ form.networkinterfaces.errors }}
{{ form.networkinterfaces }} {{ form.networkinterfaces.help_text }}
{{ form.uefi_boot.errors }}
{{ form.uefi_boot.help_text }}
{{ form.vnc.errors }}
{{ form.vnc.help_text }}
{{ form.parameters.errors }}
{{ form.parameters }} {{ form.parameters.help_text }}
{% endblock %}