{% for field in interest_form %}
{% if field.html_name != 'estimated_learners' and field.html_name != 'contact_email' and field.html_name != 'contact_phone' %}
{% if field.errors %}
{% for error in field.errors %}
{{ error }}
{% endfor %}
{% endif %}
{% if forloop.counter|divisibleby:2 %}
{% endif %}
{% endif %}
{% if field.html_name == 'estimated_learners' %}
{% if field.errors %}
{% for error in field.errors %}
{{ error }}
{% endfor %}