{% extends "base.html" %} {% load i18n static crispy_forms_tags %} {% block title %}{{ job.title }} - KAAUH ATS{% endblock %} {% block customCSS %} {% endblock %} {% block content %}

{{ job.title }}

{% trans "JOB ID:" %} {{ job.internal_job_id }}

{% if job.application_deadline %}
{% trans "Deadline:" %} {{ job.application_deadline }}
{% endif %}
{{ job.get_status_display }} {% if user.is_superuser or user.is_staff and user == job.assigned_to %} {% endif %}
{% trans "Administrative & Location" %}
{% if job.status == 'DRAFT' and user.is_superuser %} {% trans "Edit Job" %} {% endif %}
{% if job.assigned_to %}
{% trans "Assigned to:" %} {{ job.assigned_to }}
{% else %} {% endif %}
{% trans "Department:" %} {{ job.department|default:"-" }}
{% trans "Position No:" %} {{ job.position_number|default:"-" }}
{% trans "Job Type:" %} {{ job.get_job_type_display }}
{% trans "Workplace:" %} {{ job.get_workplace_type_display }}
{% trans "Location:" %} {{ job.get_location_display }}
{% trans "Salary:" %} {{ job.salary_range|default:"-" }}
{% trans "Created By:" %} {{ job.created_by|default:"-" }}
{% trans "Created At:" %} {{ job.created_at|date:"M d, Y"|default:"-" }}
{% if job.has_description_content %}
{% trans "Job Description" %}
{{ job.description|safe }}
{% endif %} {% if job.has_qualifications_content %}
{% trans "Required Qualifications" %}
{{ job.qualifications|safe }}
{% endif %} {% if job.has_benefits_content %}
{% trans "Benefits" %}
{{ job.benefits|safe }}
{% endif %} {% if job.has_application_instructions_content %}
{% trans "Application Instructions" %}
{{ job.application_instructions|safe }}
{% endif %}
{% trans "Total Applications" %} ({{ total_applications }})
{% trans "Create Application" %} {% trans "Manage Applications" %} {% trans "View Calendar" %} {% if not job.form_template.is_active %} {% if not jobzip_created %} {% trans "Generate All CVs" %} {% endif %} {% if job.zip_created %} {% trans "View All CVs" %} {% endif %} {% else %}

{% trans "Bulk CV download is inactive. To activate please change the status of job to CLOSED." %}

{% endif %}
{% trans "Application Categories & Scores" %}
{% trans "Position Statistics" %}
{{ job.open_positions }}

{% trans "Open Positions" %}

{{ positions_filled }}

{% trans "Positions Filled" %}

{{ vacant_positions }}

{% trans "Vacant Positions" %}

{% trans "Key Performance Indicators" %}
{{ avg_match_score|floatformat:1 }}

{% trans "Avg. AI Score" %}

{{ high_potential_count }}

{% trans "High Potential" %}

{{ job.vacancy_fill_rate|floatformat:2 }}%

{% trans "Fill Rate" %}

{% include "jobs/partials/image_upload.html" %} {% include "jobs/partials/linkedin_content_form.html" %} {% endblock %} {% block customJS %} {% endblock %}