{{ job.title }}
{% trans "Summary" %}
{# Job Metadata/Overview Grid #}
{% 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 }}
{% with active_collapse="collapseOne" %}
{# JOB DESCRIPTION #}
{% if job.has_description_content %}
{% endif %}
{# QUALIFICATIONS #}
{% if job.has_qualifications_content %}
{% endif %}
{# BENEFITS #}
{% if job.has_benefits_content %}
{% endif %}
{# APPLICATION INSTRUCTIONS #}
{% if job.has_application_instructions_content %}
{% endif %}
{% endwith %}
{{ job.description|safe }}
{{ job.qualifications|safe }}
{{ job.benefits|safe }}
{{ job.application_instructions|safe }}