tuskar-ui/openstack-dashboard/dashboard/templates/dash_containers_create.html
2011-07-19 14:42:41 -07:00

28 lines
1.0 KiB
HTML

{% extends 'dash_base.html' %}
{% block sidebar %}
{% with current_sidebar="containers" %}
{{block.super}}
{% endwith %}
{% endblock %}
{% block page_header %}
{% include "_page_header.html" with title="Create Tenant" %}
{% endblock page_header %}
{% block dash_main %}
<div class="dash_block">
<div class="left">
{% include '_container_form.html' with form=create_form %}
</div>
<div class="right">
<h3>Description:</h3>
<p>A container is a storage compartment for your data and provides a way for you to organize your data. You can think of a container as a folder in Windows® or a directory in UNIX®. The primary difference between a container and these other file system concepts is that containers cannot be nested. You can, however, create an unlimited number of containers within your account. Data must be stored in a container so you must have at least one container defined in your account prior to uploading data.</p>
</div>
<div class="clear">&nbsp;</div>
</div>
{% endblock %}