summaryrefslogtreecommitdiff
path: root/horizon/horizon/dashboards/nova/templates/nova/volumes/create.html
diff options
context:
space:
mode:
Diffstat (limited to 'horizon/horizon/dashboards/nova/templates/nova/volumes/create.html')
-rw-r--r--horizon/horizon/dashboards/nova/templates/nova/volumes/create.html35
1 files changed, 35 insertions, 0 deletions
diff --git a/horizon/horizon/dashboards/nova/templates/nova/volumes/create.html b/horizon/horizon/dashboards/nova/templates/nova/volumes/create.html
new file mode 100644
index 00000000..4297d5d5
--- /dev/null
+++ b/horizon/horizon/dashboards/nova/templates/nova/volumes/create.html
@@ -0,0 +1,35 @@
+{% extends 'nova/base.html' %}
+{%load i18n%}
+
+{% block sidebar %}
+ {% with current_sidebar="volumes" %}
+ {{ block.super }}
+ {% endwith %}
+{% endblock %}
+
+{% block headerjs %}
+ <script type="text/javascript" charset="utf-8">
+ $(function(){
+ $("#id_name").focus()
+ })
+ </script>
+{% endblock %}
+
+{% block page_header %}
+ {% include "horizon/common/_page_header.html" with title=_("Create a Volume") %}
+{% endblock page_header %}
+
+{% block dash_main %}
+ <div class="dash_block">
+ <div class="left">
+ {% include 'nova/volumes/_form.html' with form=create_form %}
+ <h3><a href="{% url horizon:nova:volumes:index %}">&lt;&lt; {% trans "Return to volumes list"%}</a></h3>
+ </div>
+
+ <div class="right">
+ <h3>{% trans "Description" %}:</h3>
+ <p>{% trans "Volumes are block devices that can be attached to instances." %}</p>
+ </div>
+ <div class="clear">&nbsp;</div>
+ </div>
+{% endblock %}