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

{% trans "Delete Application" %}

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

{# Assuming application_detail URL takes object.pk or object.slug #} {% trans "Back to Application" %}

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

{% blocktrans with candidate_name=object.candidate.full_name job_title=object.job.title %} Deleting the application submitted by **{{ candidate_name }}** for the job **{{ job_title }}** will permanently remove all associated data. Please review the information below carefully before proceeding. {% endblocktrans %}

{% trans "Application to be Deleted" %}
{% if object.candidate %}
{# Assuming candidate has a profile_image field #} {% if object.candidate.profile_image %} {{ object.candidate.full_name }} {% else %}
{% endif %}

{{ object.candidate.full_name }}

{% if object.candidate.email %}

{{ object.candidate.email }}

{% endif %}
{% endif %} {% if object.job %}
{% trans "Job Title" %}
{{ object.job.title }}
{% endif %}
{% trans "Applied On" %}
{{ object.created_at|date:"F d, Y \a\t P" }}
{% if object.status %}
{% trans "Current Status" %}
{{ object.get_status_display }}
{% endif %}
{% trans "What will happen when you delete this Application?" %}
  • {% trans "The Application record and all status history will be permanently deleted." %}
  • {% trans "All associated screening results, scores, and evaluations will be removed." %}
  • {% trans "Any linked documents (CV, cover letter) specific to this application will be lost." %}
  • {% trans "The Candidate will still exist, but this specific application history will be lost." %}
  • {% trans "This action cannot be undone under any circumstances." %}
{% csrf_token %}
{% trans "Cancel" %}
{% endblock %}