{% extends "base.html" %} {% load i18n %} {% load static %} {% block title %}{% trans "Create new instance" %} - {% trans "Select Type" %}{% endblock %} {% block page_heading%} {% blocktrans with host=compute.name %}New instance on {{ host }} {% endblocktrans %} {% endblock page_heading %} {% block content %} {% include 'pleasewaitdialog.html' %} {% if form.errors %} {% for field in form %} {% for error in field.errors %}
{{ field.label }}: {{ error|escape }}
{% endfor %} {% endfor %} {% for error in form.non_field_errors %}
{{ error|escape }}
{% endfor %} {% endif %}
{% csrf_token %}
{% csrf_token %}
{% endblock %} {% block script %} {% if request.user.is_superuser %} {% endif %} {% endblock %}