summaryrefslogtreecommitdiff
path: root/horizon/horizon/dashboards/syspanel/templates/syspanel/users/_form.html
blob: 3caecdb64a1d9780970057f81821cbe7db4adc22 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
<form id="user_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>