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

{% trans "Recruitment Analytics" %}

{% trans "Overview of your recruitment pipeline" %}

{# Job Filter Dropdown #}
{# -------------------------------------------------------------------------- #} {# STATS CARDS SECTION (12 KPIs) #} {# -------------------------------------------------------------------------- #} {% include 'recruitment/partials/stats_cards.html' %} {# -------------------------------------------------------------------------- #} {# CHARTS SECTION #} {# -------------------------------------------------------------------------- #}
{# AREA CHART - Daily Candidate Applications Trend (Global Chart) #}

{% trans "Daily Applications Trend" %}

{% trans "Daily application volume over time" %}

{# BAR CHART - Application Volume (Global Chart) #}

{% trans "Top 5 Application Volume" %}

{% trans "Jobs with most applications" %}

{# FUNNEL CHART - Candidate Pipeline Status (Scoped Chart) #}

{% if current_job %} {% trans "Pipeline Funnel: " %}{{ current_job.title }} {% else %} {% trans "Total Pipeline Funnel (All Jobs)" %} {% endif %}

{% trans "Candidate pipeline stages" %}

{# GAUGE CHART - Average Time-to-Hire (Avg. Days) #}

{% trans "Time-to-Hire Target Check" %}

{% trans "Average days to hire candidates" %}

{% include "recruitment/partials/_guage_chart.html" %}
{% endblock %}