{% extends 'forms/partials/candidate_facing_base.html'%} {% load static i18n %} {% block content %} {# ================================================= #} {# DJANGO MESSAGE BLOCK - Placed directly below the main navbar #} {# ================================================= #} {% if messages %}
{# Using responsive columns to center the message content, similar to your form structure #}
{% for message in messages %} {# Use 'alert-{{ message.tags }}' to apply Bootstrap styling based on Django's tag (success, error/danger, info, warning) #} {% endfor %}
{% endif %} {# ================================================= #}
{% trans "Ready to Apply?" %}

{% trans "Review the job details, then apply below." %}

{% if job.form_template %} {% trans "Apply for this Position" %} {% endif %}

{{ job.title }}

{% trans "Job Overview" %}

{% if job.salary_range %}
{% trans "Salary:" %} {{ job.salary_range }}
{% endif %}
{% trans "Deadline:" %} {% if job.application_deadline %} {{ job.application_deadline|date:"M d, Y" }} {% if job.is_expired %} {% trans "EXPIRED" %} {% endif %} {% else %} {% trans "Not specified" %} {% endif %}
{% trans "Job Type:" %} {{ job.get_job_type_display }}
{% trans "Location:" %} {{ job.get_location_display }}
{% trans "Department:" %} {{ job.department|default:"N/A" }}
{% trans "JOB ID:" %} {{ job.internal_job_id|default:"N/A" }}
{% trans "Workplace:" %} {{ job.get_workplace_type_display }}
{% if job.has_description_content %}
{% trans "Job Description" %}
{{ job.description|safe }}
{% endif %} {% if job.has_qualifications_content %}
{% trans "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 %}
{% if job.form_template %} {% trans "Apply for this Position" %} {% endif %}
{% endblock content%}