horizon/horizon/horizon/dashboards/syspanel/templates/syspanel/tenants/_quotas_form.html

13 lines
308 B
HTML

<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 modal-footer %}
{% endblock %}
</form>