summaryrefslogtreecommitdiff
path: root/horizon/horizon/dashboards/syspanel/templates/syspanel/tenants/_quotas_form.html
blob: a2168618c813ba2655a62bfbb3d1e49a913e6ac3 (plain)
1
2
3
4
5
6
7
8
9
10
11
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>