{% extends "base.html" %} {% load static i18n %} {% block title %}{% trans "Delete Applicant" %} - {{ block.super }}{% endblock %} {% block customCSS %} {% endblock %} {% block content %}

{% trans "Delete Applicant" %}

{% trans "You are about to delete a Applicant record. This action cannot be undone." %}

{% trans "Back to Applicant" %}

{% trans "Warning: This action cannot be undone!" %}

{% trans "Deleting this Applicant will permanently remove all associated data. Please review the information below carefully before proceeding." %}

{% trans "Applicant to be Deleted" %}
{% if object.profile_image %} {{ object.get_full_name }} {% else %}
{% endif %}

{{ object.get_full_name }}

{% if object.email %}

{{ object.email }}

{% endif %}
{% if object.phone %}
{% trans "Phone" %}
{{ object.phone }}
{% endif %}
{% trans "Created On" %}
{{ object.created_at|date:"F d, Y" }}
{% if object.nationality %}
{% trans "Nationality" %}
{{ object.nationality }}
{% endif %} {% if object.gender %}
{% trans "Gender" %}
{{ object.get_gender_display }}
{% endif %}
{% trans "What will happen when you delete this Applicant?" %}
  • {% trans "The Applicant profile and all Applicantal information will be permanently deleted" %}
  • {% trans "All associated applications and documents will be removed" %}
  • {% trans "Any interview schedules and history will be deleted" %}
  • {% trans "All related data and records will be lost" %}
  • {% trans "This action cannot be undone under any circumstances" %}
{% csrf_token %}
{% trans "Cancel" %}
{% endblock %}