summaryrefslogtreecommitdiff
path: root/horizon/horizon/dashboards/syspanel/templates/syspanel/tenants/_quotas_form.html
diff options
context:
space:
mode:
Diffstat (limited to 'horizon/horizon/dashboards/syspanel/templates/syspanel/tenants/_quotas_form.html')
-rw-r--r--horizon/horizon/dashboards/syspanel/templates/syspanel/tenants/_quotas_form.html12
1 files changed, 12 insertions, 0 deletions
diff --git a/horizon/horizon/dashboards/syspanel/templates/syspanel/tenants/_quotas_form.html b/horizon/horizon/dashboards/syspanel/templates/syspanel/tenants/_quotas_form.html
new file mode 100644
index 00000000..a2168618
--- /dev/null
+++ b/horizon/horizon/dashboards/syspanel/templates/syspanel/tenants/_quotas_form.html
@@ -0,0 +1,12 @@
+<form id="quotas_form" action="" method="post">
+ {% csrf_token %}
+ {% for hidden in form.hidden_fields %}{{ hidden }}{% endfor %}
+ {% for field in form.visible_fields %}
+ {{ field.label_tag }}
+ {{ field.errors }}
+ {{ field }}
+ {% endfor %}
+ {% block submit %}
+ {% endblock %}
+</form>
+