{% extends "base.html" %} {% block title %}{{ job.title }} - University ATS{% endblock %} {% block content %}

{{ job.title }}

{{ job.get_status_display }}
Department: {{ job.department|default:"Not specified" }}
Position Number: {{ job.position_number|default:"Not specified" }}
Job Type: {{ job.get_job_type_display }}
Workplace: {{ job.get_workplace_type_display }}
Location: {{ job.get_location_display }}
Created By: {{ job.created_by|default:"Not specified" }}
{% if job.salary_range %}
Salary Range: {{ job.salary_range }}
{% endif %} {% if job.start_date %}
Start Date: {{ job.start_date }}
{% endif %} {% if job.application_deadline %}
Application Deadline: {{ job.application_deadline }} {% if job.is_expired %} EXPIRED {% endif %}
{% endif %} {% if job.description %}
Description
{{ job.description|linebreaks }}
{% endif %} {% if job.qualifications %}
Qualifications
{{ job.qualifications|linebreaks }}
{% endif %} {% if job.benefits %}
Benefits
{{ job.benefits|linebreaks }}
{% endif %} {% if job.application_instructions %}
Application Instructions
{{ job.application_instructions|linebreaks }}
{% endif %}
Ready to Apply?

Review the job details on the left, then click the button below to submit your application.

Apply for this Position

You'll be redirected to our secure application form where you can upload your resume and provide additional details.

{% endblock %}