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

{% trans "Recruitment Intelligence" %} 🧠

{# -------------------------------------------------------------------------- #} {# STATS CARDS SECTION #} {# -------------------------------------------------------------------------- #}

{% trans "Total Jobs" %}

{{ total_jobs }}
{% trans "Active & Drafted Positions" %}

{% trans "Total Candidates" %}

{{ total_candidates }}
{% trans "All Profiles in ATS" %}

{% trans "Avg. Apps per Job" %}

{{ average_applications|floatformat:1 }}
{% trans "Efficiency Metric" %}

{% trans "Avg. Match Score" %}

{{ avg_match_score|floatformat:1 }}
{% trans "Average AI Score (0-100)" %}

{% trans "High Potential" %}

{{ high_potential_count }}
{% trans "Candidates with Score ≥ 75 ({{ high_potential_ratio }}%)" %}

{% trans "Scored Profiles" %}

{{ scored_ratio|floatformat:1 }}%
{% trans "Percent of profiles processed by AI" %}
{# -------------------------------------------------------------------------- #} {# CHARTS SECTION (Using a row/col layout for structure) #} {# -------------------------------------------------------------------------- #}
{# BAR CHART - Application Volume #}

{% trans "Top 5 Application Volume" %}

{# DONUT CHART - Candidate Pipeline Status #}

{% trans "Candidate Pipeline Status for job: " %}

{{my_job}} {# Job Filter Dropdown - Consistent with Card Header Layout #}
{% endblock %}