{% extends 'base.html' %} {% load static %} {% load crispy_forms_tags %} {% load customtags %} {% load i18n %} {% block contentbody %} {# include 'subscriptions/snippets/messages.html' #} {% if form.non_field_errors %}
{% for err in form.non_field_errors %}

{{ err }}

{% endfor %}
{% endif %}

Personal Information

{% csrf_token %}
{{personal_form.preference_country}}
{{personal_form.mobile_number|errorcss}}
{{personal_form.mobile_number.errors.as_text}}
{{personal_form.email.errors.as_text}}
{{personal_form.marital_status}}

Program Interested

{{ cost_forms.non_form_errors }}
{% for cost_form in program_interested_form %} {% include 'snippets/program_interested.html' with form=cost_form %} {% endfor %} {{ program_interested_form.management_form }}

Previous Academic Details

{{ previous_academic_form.non_form_errors }}
{{ previous_academic_form.management_form }} {% for cost_form in previous_academic_form %}
{% include 'snippets/academic_detail_enq.html' with form=cost_form %}
{% endfor %}

Test Score

{{ cost_forms.non_form_errors }}
{{test_score_form.management_form}}
{% for cost_form in test_score_form %}
{{ form.non_field_errors }}
{% include 'snippets/field&error.html' with field=cost_form.english_test %}
{% include 'snippets/field&error.html' with field=cost_form.secured_points %}
{% include 'snippets/field&error.html' with field=cost_form.standarized_test %}
{% include 'snippets/field&error.html' with field=cost_form.standrized_points %}
{% for hidden in cost_form.hidden_fields %} {{ hidden }} {{hidden.errors}} {% endfor %}
{% endfor %}

Other Detail

{% for cost_form in other_detail_form %} {% include 'snippets/other_detail.html' with form=cost_form %}
{% endfor %} {{ other_detail_form.management_form }}
{% endblock %} {% block js %} {{ block.super }} {% endblock %}