{% extends 'nova/base.html' %} {%load i18n%} {% block sidebar %} {% with current_sidebar="images" %} {{block.super}} {% endwith %} {% endblock %} {% block page_header %} {# to make searchable false, just remove it from the include statement #} {% include "horizon/common/_page_header.html" with title=_("Launch Instance") %} {% endblock page_header %} {% block dash_main %}
{% include 'nova/images/_launch.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 you 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 "Gigabytes"%} {{quotas.gigabytes}}GB
 
{% endblock %}