52 lines
1.3 KiB
HTML
52 lines
1.3 KiB
HTML
{% extends 'dash_base.html' %}
|
|
|
|
{% 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 "_page_header.html" with title="Launch Instance" %}
|
|
{% endblock page_header %}
|
|
|
|
{% block dash_main %}
|
|
<div class="dash_block">
|
|
<div class="left">
|
|
{% include '_launch.html' %}
|
|
</div>
|
|
<div class="right">
|
|
<h3>Description:</h3>
|
|
<p>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.</p>
|
|
<table border="0">
|
|
<tr>
|
|
<th>Quota Name</th>
|
|
<th>Limit</th>
|
|
</tr>
|
|
<tr>
|
|
<td>RAM (MB)</td>
|
|
<td>{{quotas.ram}}MB</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Floating IPs</td>
|
|
<td>{{quotas.floating_ips}}</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Instances</td>
|
|
<td>{{quotas.instances}}</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Volumes</td>
|
|
<td>{{quotas.volumes}}</td>
|
|
</tr>
|
|
<tr>
|
|
<td>Gigabytes</td>
|
|
<td>{{quotas.gigabytes}}GB</td>
|
|
</tr>
|
|
</table>
|
|
</div>
|
|
<div class="clear"> </div>
|
|
</div>
|
|
{% endblock %}
|