{% extends "base.html" %} {% load static i18n %} {% block title %}{% trans "Update" %} {{ person.get_full_name }} - {{ block.super }}{% endblock %} {% block content %}

{% trans "Update Applicant" %}

{% trans "Currently Editing" %}

{% if person.profile_image %} {{ person.get_full_name }} {% else %}
{% endif %}
{{ person.get_full_name }}
{% if person.email %}

{{ person.email }}

{% endif %} {% trans "Created" %}: {{ person.created_at|date:"d M Y" }} • {% trans "Last Updated" %}: {{ person.updated_at|date:"d M Y" }}

{% trans "Edit Information" %}

{% if form.non_field_errors %} {% endif %} {% if messages %} {% for message in messages %} {% endfor %} {% endif %}
{% csrf_token %}
{% if person.profile_image %} {{ person.get_full_name }} {% else %}
{% endif %}

{% trans "JPG, PNG or GIF. Max size 2MB." %}

{% if form.first_name.errors %}
{{ form.first_name.errors.0 }}
{% endif %}
{% if form.middle_name.errors %}
{{ form.middle_name.errors.0 }}
{% endif %}
{% if form.last_name.errors %}
{{ form.last_name.errors.0 }}
{% endif %}
{% if form.email.errors %}
{{ form.email.errors.0 }}
{% endif %}
{% if form.phone.errors %}
{{ form.phone.errors.0 }}
{% endif %}
{% if form.national_id.errors %}
{{ form.national_id.errors.0 }}
{% endif %}
{% if form.date_of_birth.errors %}
{{ form.date_of_birth.errors.0 }}
{% endif %}
{% if form.nationality.errors %}
{{ form.nationality.errors.0 }}
{% endif %}
{% if form.gender.errors %}
{{ form.gender.errors.0 }}
{% endif %}
{% if form.gpa.errors %}
{{ form.gpa.errors.0 }}
{% endif %}
{% if form.address.errors %}
{{ form.address.errors.0 }}
{% endif %}
{% if form.linkedin_profile.errors %}
{{ form.linkedin_profile.errors.0 }}
{% endif %}

{% trans "Optional: Add LinkedIn profile URL" %}

{% trans "Cancel" %}
{% endblock %}