summaryrefslogtreecommitdiff
path: root/horizon/horizon/dashboards/nova/templates/nova/containers/create.html
blob: 4d4cde4e0e8f52b9ffd564316be601145652c8a8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
{% extends 'nova/base.html' %}
{%load i18n%}

{% block sidebar %}
  {% with current_sidebar="containers" %}
    {{block.super}}
  {% endwith %}
{% endblock %}

{% block page_header %}
  {% include "horizon/common/_page_header.html" with title=_("Create Tenant") %}
{% endblock page_header %}

{% block dash_main %}
  <div class="dash_block">
    <div class="left">
      {% include 'nova/containers/_form.html' with form=create_form %}
    </div>

    <div class="right">
      <h3>Description:</h3>
      <p>{% trans "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 %}