{% extends 'portal_base.html' %} {% load static i18n %} {% block title %}{% trans "Application Details" %} - ATS{% endblock %} {% block customCSS %} {% endblock %} {% block content %}
{% if not application.hiring_agency %} {% endif %}

{{ application.job.title }}

{% trans "Application ID:" %} {{ application.slug }}

{{ application.get_stage_display }}
{% trans "Applied" %}
{% if application.stage in 'Exam,Interview,Document Review,Offer,Hired,Rejected' %}
{% trans "Exam" %}
{% endif %} {% if application.stage in 'Interview,Document Review,Offer,Hired,Rejected' %}
{% trans "Interview" %}
{% endif %} {% if application.stage in 'Document Review,Offer,Hired,Rejected' %}
{% trans "Document Review" %}
{% endif %} {% if application.stage in 'Offer,Hired,Rejected' %}
{% trans "Offer" %}
{% endif %} {% if application.stage in 'Hired,Rejected' %}
{% trans "Final Status" %}
{% endif %}
{% trans "Applied Date" %}

{{ application.created_at|date:"M d, Y" }}

{% trans "Department" %}

{{ application.job.department|default:"" }}

{% trans "Job Type" %}

{{ application.get_job_type_display }}

{% trans "Location" %}

{{ application.get_workplace_type_display }}

{% if application.resume %} {% endif %}
{% if interviews %}
{% trans "Interview Schedule" %}
{% if interviews %}
{% for interview in interviews %} {% endfor %}
{% trans "Topic" %} {% trans "Date" %} {% trans "Time" %} {% trans "Type" %} {% trans "Status" %} {% trans "Meeting Link" %} {% trans "Physical Location" %}
{{ interview.interview.topic }} {{ interview.interview_date|date:"M d, Y" }} {{ interview.interview_time|time:"H:i" }} {% if interview.interview.location_type == 'Remote' %} {% trans "Remote" %} {% else %} {% trans "On-site" %} {% endif %} {% if interview.interview.status %} {{ interview.interview.status|capfirst }} {% endif %} {% if interview.interview and interview.interview.location_type == 'Remote' %} {% trans "Join" %} {% else %} - {% endif %} {% if interview.interview.physical_address %} {{interview.interview.physical_address}} {% endif %}
{% else %}

{% trans "No interviews scheduled yet." %}

{% endif %}
{% endif %} {% if application.stage == "Document Review" %}
{% trans "Documents" %}
{% if documents %}
{% for document in documents %} {% endfor %}
{% trans "Document Name" %} {% trans "Type" %} {% trans "Upload Date" %} {% trans "File Size" %} {% trans "Actions" %}
{% if document.file %} {{ document.get_document_type_display }} {% else %} {{ document.get_document_type_display }} {% endif %} {{ document.get_document_type_display }} {{ document.created_at|date:"M d, Y" }} {% if document.file %} {% with file_size=document.file.size|filesizeformat %} {{ file_size }} {% endwith %} {% else %} - {% endif %} {% if document.file %} {% trans "Download" %} {% endif %}
{% else %}

{% trans "No documents uploaded." %}

{% endif %}
{% endif %}
{% trans "Next Steps" %}
{% if application.stage == 'Applied' %}
{% trans "Your application is being reviewed by our recruitment team. You will receive an update within 3-5 business days." %}
{% elif application.stage == 'Screening' %}
{% trans "Your application is currently under screening. We are evaluating your qualifications against the job requirements." %}
{% elif application.stage == 'Document Review' %}
{% trans "Please upload the required documents for review. Our team will evaluate your submitted materials." %}
{% elif application.stage == 'Exam' %}
{% trans "You have been shortlisted for an assessment. Please check your email for exam details and preparation materials." %}
{% elif application.stage == 'Interview' %}
{% trans "Congratulations! You have been selected for an interview. Please check the interview schedule above and prepare accordingly." %}
{% elif application.stage == 'Offer' %}
{% trans "You have received a job offer! Please check your email for the detailed offer letter and next steps." %}
{% elif application.stage == 'Hired' %}
{% trans "Welcome to the team! You will receive onboarding information shortly." %}
{% elif application.stage == 'Rejected' %}
{% trans "Thank you for your interest. Unfortunately, your application was not selected at this time. We encourage you to apply for other positions." %}
{% endif %}
{% endblock %}