{% extends 'applicant/partials/candidate_facing_base.html' %} {% load static i18n %} {% block title %}{% trans "Application" %}-{{ job.title }}{% endblock %} {% block content %}

{{ job.title }}

{% trans "Summary" %}

{% 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 %}(EXPIRED){% endif %} {% else %}{% trans "Ongoing" %}{% endif %}
{% trans "Type:" %} {{ job.get_job_type_display }}
{% trans "Location:" %} {{ job.get_location_display }}
{% trans "Department:" %} {{ job.department|default:"N/A" }}
{% trans "ID:" %} {{ job.internal_job_id|default:"N/A" }}
{% if job.has_description_content %}
{{ job.description|safe }}
{% endif %} {% if job.has_qualifications_content %}
{{ job.qualifications|safe }}
{% endif %}
{% if job.form_template %}
{% if user.is_authenticated and already_applied %} {% else %} {% trans "Apply for this Position" %} {% endif %}
{% endif %} {% endblock %}