{% load i18n %} {% get_current_language as LANGUAGE_CODE %} {% if LANGUAGE_CODE == 'en' %}
{% trans "AI Score" %}: {{ application.match_score }}% {{ application.professional_category }}
{% trans "Job Fit" %}

{{ application.job_fit_narrative }}

{% trans "Top Keywords" %}
{% for keyword in application.top_3_keywords %} {{ keyword }} {% endfor %}
{% trans "Experience" %}

{{ application.years_of_experience }} {% trans "years" %}

{% trans "Recent Role:" %} {{ application.most_recent_job_title }}

{% trans "Skills" %}

{% trans "Soft Skills:" %} {{ application.soft_skills_score }}%

{% trans "Industry Match:" %} {{ application.industry_match_score }}%

{% for criterion, status in application.criteria_checklist.items %} {% endfor %}
{% trans "Criteria" %} {% trans "Status" %}
{{ criterion }} {% if status == "Met" %} {% trans "Met" %} {% elif status == "Not Met" %} {% trans "Not Met" %} {% else %} {{ status }} {% endif %}
{% trans "Minimum Requirements" %}
{% if application.min_requirements_met %} {% trans "Met" %} {% else %} {% trans "Not Met" %} {% endif %}
{% trans "Screening Rating" %}
{{ application.screening_stage_rating }}
{% if application.language_fluency %}
{% for language in application.language_fluency %} {{ language }} {% endfor %}
{% endif %} {% else %}
{% trans "AI Score" %}: {{ application.match_score }}% {{ application.professional_category_ar }}
{% trans "Job Fit" %}

{{ application.job_fit_narrative_ar }}

{% trans "Top Keywords" %}
{% for keyword in application.top_3_keywords_ar %} {{ keyword }} {% endfor %}
{% trans "Experience" %}

{{ application.years_of_experience }} {% trans "years" %}

{% trans "Recent Role:" %} {{ application.most_recent_job_title_ar }}

{% trans "Skills" %}

{% trans "Soft Skills:" %} {{ application.soft_skills_score }}%

{% trans "Industry Match:" %} {{ application.industry_match_score }}%

{% for criterion, status in application.criteria_checklist_ar.items %} {% endfor %}
{% trans "Criteria" %} {% trans "Status" %}
{{ criterion }} {% if status == "Met" %} {% trans "Met" %} {% elif status == "Not Met" %} {% trans "Not Met" %} {% else %} {{ status }} {% endif %}
{% trans "Minimum Requirements" %}
{% if application.min_requirements_met_ar %} {% trans "Met" %} {% else %} {% trans "Not Met" %} {% endif %}
{% trans "Screening Rating" %}
{{ application.screening_stage_rating_ar }}
{% if application.language_fluency_ar %}
{% for language in application.language_fluency_ar %} {{ language }} {% endfor %}
{% endif %} {% endif %}