{% 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 %}
{% if job.has_description_content %}
{% 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 }}
{% trans "Job Description" %}
{{ job.description|safe }}
{% trans "Qualifications" %}
{{ job.qualifications|safe }}
{% trans "Benefits" %}
{{ job.benefits|safe }}
{% trans "Application Instructions" %}
{{ job.application_instructions|safe }}