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

{% trans "Delete Candidate" %}

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

{% trans "Back to Candidate" %}

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

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

{% trans "Candidate to be Deleted" %}
{% if object.profile_image %} {{ object.name }} {% else %}
{% endif %}

{{ object.name }}

{% if object.email %}

{{ object.email }}

{% endif %}
{% trans "Position Applied" %}
{% if object.job_posting %} {{ object.job_posting.title }} {% else %} {% trans "Not specified" %} {% endif %}
{% if object.phone %}
{% trans "Phone" %}
{{ object.phone }}
{% endif %}
{% trans "Applied On" %}
{{ object.created_at|date:"F d, Y" }}
{% trans "Status" %}
{% if object.status %} {{ object.get_status_display }} {% else %} {% trans "Not specified" %} {% endif %}
{% trans "What will happen when you delete this candidate?" %}
  • {% trans "The candidate profile and all personal information will be permanently deleted" %}
  • {% trans "All application data and documents will be removed" %}
  • {% trans "Interview schedules and history will be deleted" %}
  • {% trans "Any associated notes and communications will be lost" %}
  • {% trans "This action cannot be undone under any circumstances" %}
{% csrf_token %}
{% trans "Cancel" %}
{% endblock %}