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

{% trans "Recruitment Analytics" %}

{# -------------------------------------------------------------------------- #} {# JOB FILTER SECTION #} {# -------------------------------------------------------------------------- #}

{% if current_job %} {% trans "Data Scope: " %}{{ current_job.title }} {% else %} {% trans "Data Scope: All Jobs" %} {% endif %}

{# Job Filter Dropdown #}
{# -------------------------------------------------------------------------- #} {# STATS CARDS SECTION (12 KPIs) #} {# -------------------------------------------------------------------------- #} {% include 'recruitment/partials/stats_cards.html' %} {# Note: The content of 'recruitment/partials/stats_cards.html' uses h3 which is styled correctly here #} {# -------------------------------------------------------------------------- #} {# CHARTS SECTION #} {# -------------------------------------------------------------------------- #}
{# AREA CHART - Daily Candidate Applications Trend (Global Chart) #}

{% trans "Daily Applications Trend" %}

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

{% trans "Top 5 Application Volume" %}

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

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

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

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

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