{% extends 'index.html' %} {% block content %} {% load static i18n horillafilters mathfilters recruitmentfilters %}
{% trans "Conversion Rate" %}
{{conversion_ratio}}%
{% if "onboarding"|app_installed %}
{% trans "Offer Acceptance Rate (OAR)" %}
{{acceptance_ratio}}%
{% endif %}
{% trans "Skill Zone Status" %}
{% if skill_zone %}
    {% for skill in skill_zone %}
  •   {{skill.skillzonecandidate_set.all|length}}   {% if skill.skillzonecandidate_set.all|length != 1 %} {% trans "Candidates" %} {% else %} {% trans "Candidate" %} {% endif %}

  • {% endfor %}
{% else %}

{% trans "No skill zone available." %}

{% endif %}
{% comment %}
{% trans "Open Positions By Department" %}
{% if dep_vacancy %}
{% else %}

{% trans "No department-specific vacancies currently." %}

{% endif %}
{% endcomment %}
{% trans "Candidate Offer Letter Status" %}
{% if total_candidates %}
{% else %}

{% trans "No Candidates available." %}

{% endif %}
{% if "onboarding"|app_installed %}
{% trans "Candidate on Onboard" %} {% if onboarding_count %}{% trans "View" %}{% endif %}
{% if onboarding_count %}
    {% for cand in onboard_candidates %}
  • {{cand}}
    {{cand|truncatechars:15}}

    {{cand.job_position_id|truncatechars:15}}

  • {% endfor %}
{% else %}

{% trans "No candidates started onboarding." %}

{% endif %}
{% endif %}
{% trans "Joinings Per Month" %}
{% if joining %}
{% else %}

{% trans "No records were available." %}

{% endif %}
{% if ongoing_recruitments %}
{% trans "Current Hiring Pipeline" %}
{% trans "Job Positions" %}
{% trans "Initial" %}
{% trans "Test" %}
{% trans "Interview" %}
{% trans "Hired" %}
{% trans "Cancelled" %}
{% for job_item in job_data %}
{{ job_item.0 }}
{{ job_item.1 }}
{{ job_item.2 }}
{{ job_item.3 }}
{{ job_item.4 }}
{{ job_item.5 }}
{% endfor %}
{% endif %}
{% if "onboarding"|app_installed %} {% if request.user|is_in_task_managers %}
{% else %}
{% trans "My Onboarding Tasks" %}

{% trans "No onboarding tasks are currently available." %}

{% endif %} {% endif %}
{% trans "Candidates Per Stage" %}
{% if stage_chart_count %} {% else %}

{% trans "No recruitment stages currently available." %}

{% endif %}
{% if ongoing_recruitments %}
{% trans "Ongoing Recruitments & Hiring Managers" %}
{% trans "Recruitment" %}
{% trans "Manager" %}
{% for recruitment_title, managers in recruitment_manager_mapping.items %}
{{ recruitment_title }}
{{ managers|join:", " }}
{% endfor %}
{% endif %}
{% endblock content %}