{% for field in form %}
{{ field.label_tag }}:
{% if field.errors %}
{{ field }} {{ field.errors }}
{% else %}
{{ field }}
{% endif %}
{% endfor %}