{% extends 'candidate/application_form_component.html' %} {% block content %} {% load static %} {% load i18n %} {{ form.load }}
{% if messages %}
{% for message in messages %}
{{ message }}
{% endfor %}
{% endif %} {% csrf_token %}
{{ form.profile.errors }} {{ form.non_field_errors }}
{{ form.name.errrors }}
{% if not request.GET.recruitmentId %}
{{ form.recruitment_id }} {{ form.recruitment_id.errors }}
{{ form.job_position_id }} {{ form.job_position_id.errors }}
{% else %}
{% endif %}
{{ form.email.errors }}
{{ form.mobile.errors }}
{{ form.portfolio.errors }}
{% if resume.file %}

Currently: {{ resume.file.name }}

Change:

{% endif %} {{ form.resume.errors }}
{{ form.gender }} {{ form.gender.errros }}
{{ form.address.errors }}
{{ form.country.errors }}
{{ form.state.errors }}
{{ form.city.errors }}
{{ form.zip.errors }}

© {% now 'Y' %} {{ white_label_company_name }}. All rights resevered.

{% if resume %}
{% else %}
{{recruitment.description|safe}}
{% endif %}
{% endblock content %}