{% extends 'applicant/partials/candidate_facing_base.html' %} {% load static i18n %} {% block content %} {# ------------------------------------------------ #} {# 🚀 TOP NAV BAR (Sticky and Themed) #} {# ------------------------------------------------ #} {# ------------------------------------------------ #} {# 🔔 DJANGO MESSAGES (Refined placement and styling) #} {# ------------------------------------------------ #} {# ------------------------------------------------ #} {# 💻 MAIN CONTENT CONTAINER #} {# ------------------------------------------------ #}
{# 📌 RIGHT COLUMN: Sticky Apply Card (Desktop Only) #}
{% trans "Ready to Apply?" %}

{% trans "Review the full job details below before submitting your application." %}

{% if job.form_template %} {% trans "Apply for this Position" %} {% elif not job.is_expired %}

{% trans "Application form is unavailable." %}

{% endif %}
{# 📝 LEFT COLUMN: Job Details #}
{# Job Title Header #}

{{ job.title }}

{% trans "Summary" %}

{# Job Metadata/Overview Grid #}
{# SALARY #} {% if job.salary_range %}
{% trans "Salary:" %} {{ job.salary_range }}
{% endif %} {# DEADLINE #}
{% trans "Deadline:" %} {% if job.application_deadline %} {% if job.is_expired %} {% trans "EXPIRED" %} {% endif %} {% else %} {% trans "Ongoing" %} {% endif %}
{# JOB TYPE #}
{% trans "Job Type:" %} {{ job.get_job_type_display }}
{# LOCATION #}
{% trans "Location:" %} {{ job.get_location_display }}
{# DEPARTMENT #}
{% trans "Department:" %} {{ job.department|default:"N/A" }}
{# JOB ID #}
{% trans "JOB ID:" %} {{ job.internal_job_id|default:"N/A" }}
{# WORKPLACE TYPE #}
{% trans "Workplace:" %} {{ job.get_workplace_type_display }}
{# Detailed Accordion Section #}
{% with active_collapse="collapseOne" %} {# JOB DESCRIPTION #} {% if job.has_description_content %}

{{ job.description|safe }}
{% endif %} {# QUALIFICATIONS #} {% if job.has_qualifications_content %}

{{ job.qualifications|safe }}
{% endif %} {# BENEFITS #} {% if job.has_benefits_content %}

{{ job.benefits|safe }}
{% endif %} {# APPLICATION INSTRUCTIONS #} {% if job.has_application_instructions_content %}

{{ job.application_instructions|safe }}
{% endif %} {% endwith %}
{# 📱 MOBILE FIXED APPLY BAR (Replaced inline style with utility classes) #} {% if job.form_template %} {% endif %} {% endblock content%}