{% extends 'portal_base.html' %} {% load static i18n %} {% block title %}{% trans "Application Details" %} - ATS{% endblock %} {% block customCSS %} {% endblock %} {% block content %}
{% trans "Application ID:" %} {{ application.slug }}
{{ application.created_at|date:"M d, Y" }}
{{ application.job.department|default:"" }}
{{ application.get_job_type_display }}
{{ application.get_workplace_type_display }}
| {% 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 %} |
{% trans "No interviews scheduled yet." %}
| {% 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 %} |
{% trans "No documents uploaded." %}