summaryrefslogtreecommitdiff
path: root/horizon/horizon/dashboards/nova/templates/nova/volumes/_form.html
diff options
context:
space:
mode:
Diffstat (limited to 'horizon/horizon/dashboards/nova/templates/nova/volumes/_form.html')
-rw-r--r--horizon/horizon/dashboards/nova/templates/nova/volumes/_form.html13
1 files changed, 13 insertions, 0 deletions
diff --git a/horizon/horizon/dashboards/nova/templates/nova/volumes/_form.html b/horizon/horizon/dashboards/nova/templates/nova/volumes/_form.html
new file mode 100644
index 00000000..758fb185
--- /dev/null
+++ b/horizon/horizon/dashboards/nova/templates/nova/volumes/_form.html
@@ -0,0 +1,13 @@
+{% load i18n %}
+<form id="volume_form" method="post">
+ <fieldset>
+ {% csrf_token %}
+ {% for hidden in form.hidden_fields %}{{ hidden }}{% endfor %}
+ {% for field in form.visible_fields %}
+ {{ field.label_tag }}
+ {{ field.errors }}
+ {{ field }}
+ {% endfor %}
+ <input type="submit" value="{% trans "Create Volume" %}" class="large-rounded" />
+ </fieldset>
+</form>