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

{% trans "Confirm Deletion" %}

{% trans "You are about to permanently delete the following Application." %}

{% blocktrans with candidate_name=object.candidate.full_name job_title=object.job.title %} **Are you absolutely sure** you want to delete the application submitted by **{{ object}}** ? {% endblocktrans %}

{% trans "Application Details" %}
{% if object.candidate %}

{% trans "Candidate:" %} {{ object.candidate.full_name }}

{% endif %} {% if object.job %}

{% trans "Job Title:" %} {{ object.job.title }}

{% endif %}

{% trans "Applied On:" %} {{ object.created_at|date:"M d, Y \a\t P" }}

{% trans "This action is **irreversible** and all associated data will be lost." %}

{% endblock %}