summaryrefslogtreecommitdiff
path: root/horizon/horizon/dashboards/nova/templates/nova/snapshots/_form.html
diff options
context:
space:
mode:
Diffstat (limited to 'horizon/horizon/dashboards/nova/templates/nova/snapshots/_form.html')
-rw-r--r--horizon/horizon/dashboards/nova/templates/nova/snapshots/_form.html14
1 files changed, 14 insertions, 0 deletions
diff --git a/horizon/horizon/dashboards/nova/templates/nova/snapshots/_form.html b/horizon/horizon/dashboards/nova/templates/nova/snapshots/_form.html
new file mode 100644
index 00000000..fea72672
--- /dev/null
+++ b/horizon/horizon/dashboards/nova/templates/nova/snapshots/_form.html
@@ -0,0 +1,14 @@
+{%load i18n%}
+<form id="snapshot_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 Snapshot"%}" class="large-rounded" />
+ </fieldset>
+</form>
+