I am trying to iterate through form.fields in a template and for:
{% for field in form.fields %} {{ field }}, {% endfor %}
I am getting
The field you get are of django.forms.Field instances. To get the html view from it, you can use the widget function. {{ field.widget }}