{% extends "horizon/common/_modal_form.html" %} {% load i18n %} {% block form_id %}launch_image_form{% endblock %} {% block form_action %}{% url horizon:nova:images_and_snapshots:images:launch image.id %}{% endblock %} {% block modal_id %}launch_image_{{ image.id }}{% endblock %} {% block modal-header %}{% trans "Launch Instances" %}{% endblock %} {% block modal-body %}
{% include "horizon/common/_form_fields.html" %}

{% trans "Description:" %}

{% trans "Specify the details for launching an instance. Also please make note of the table below; all tenants have quotas which define the limit of resources they are allowed to provision." %}

{% trans "Quota Name" %} {% trans "Limit" %}
{% trans "RAM (MB)" %} {{ quotas.ram }}MB
{% trans "Floating IPs" %} {{ quotas.floating_ips }}
{% trans "Instances" %} {{ quotas.instances }}
{% trans "Volumes" %} {{ quotas.volumes }}
{% trans "Available Disk" %} {{ quotas.gigabytes }}GB
{% endblock %} {% block modal-footer %} {% trans "Cancel" %} {% endblock %}