summaryrefslogtreecommitdiff
path: root/horizon/horizon/dashboards/nova/templates/nova/volumes/attach.html
diff options
context:
space:
mode:
Diffstat (limited to 'horizon/horizon/dashboards/nova/templates/nova/volumes/attach.html')
-rw-r--r--horizon/horizon/dashboards/nova/templates/nova/volumes/attach.html27
1 files changed, 27 insertions, 0 deletions
diff --git a/horizon/horizon/dashboards/nova/templates/nova/volumes/attach.html b/horizon/horizon/dashboards/nova/templates/nova/volumes/attach.html
new file mode 100644
index 00000000..c762b52d
--- /dev/null
+++ b/horizon/horizon/dashboards/nova/templates/nova/volumes/attach.html
@@ -0,0 +1,27 @@
+{% extends 'nova/base.html' %}
+{% load i18n %}
+
+{% block sidebar %}
+ {% with current_sidebar="volumes" %}
+ {{ block.super }}
+ {% endwith %}
+{% endblock %}
+
+{% block page_header %}
+ {% include "horizon/common/_page_header.html" with title=_("Attach a Volume") %}
+{% endblock page_header %}
+
+{% block dash_main %}
+ <div class="dash_block">
+ <div class="left">
+ {% include 'nova/volumes/_attach_form.html' with form=attach_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 "Attach a volume to an instance." %}</p>
+ </div>
+ <div class="clear">&nbsp;</div>
+ </div>
+{% endblock %}