{% extends "base.html" %} {% load static i18n humanize %} {% block title %}{{ application.name }} - {{ block.super }}{% endblock %} {% block customCSS %} {% endblock %} {% block content %}
{# Breadcrumb #}
{# LEFT COLUMN: MAIN DETAILS AND TABS #}
{# HEADER SECTION #}

{{ application.name }}

{% trans "Stage:" %} {{ application.stage }}

{% trans "Applied for:" %} {{ application.job.title }}

{# Change Stage button #} {% if user.is_staff and user == application.job.assigned_to or user.is_superuser %} {% endif %}
{# TABS NAVIGATION #}
{% if application.parsed_summary %} {% endif %} {% if application.is_resume_parsed %} {% endif %}
{# TAB 1: CONTACT & DATES #}
{% trans "Core Details" %}

{% trans "Email" %}

{{ application.email }}

{% trans "Position Applied" %}

{{ application.job.title }}

{% trans "Applied Date" %}

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

{{ application.created_at|naturaltime }}
{# TAB 2: JOURNEY TIMELINE #} {# TAB 3: DOCUMENTS #} {# TAB 4: AI SUMMARY #} {% if application.parsed_summary %} {% endif %} {# TAB 5: AI ANALYSIS #} {% if application.is_resume_parsed %} {% endif %}
{# RIGHT COLUMN: ACTIONS #}
{# Management Actions #}
{% trans "Management Actions" %}
{# Time to Hire #}
{% trans "Time to Hire:" %}
{% with days=application.time_to_hire_days %}

{% if days > 0 %}{{ days }} day{{ days|pluralize }}{% else %}0{% endif %}

{% endwith %}
{# Resume Parsing Section #}
{% trans "Resume Analysis" %}
{% if application.is_resume_parsed %} {% include 'recruitment/application_resume_template.html' %} {% else %} {% if application.scoring_timeout %}
{% trans "Resume Analysis In Progress..." %}
{% else %}
{% endif %} {% endif %}
{# Stage Update Modal for Staff Users #} {% if user.is_staff %} {% endif %} {% endblock %}