{% 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 %} {% if job.application_url %}
{% endif %}
LinkedIn Integration
{% if job.posted_to_linkedin %}
Posted to LinkedIn successfully!
{% if job.linkedin_post_url %} View on LinkedIn {% endif %} Posted on: {{ job.linkedin_posted_at|date:"M d, Y" }} {% else %}

This job has not been posted to LinkedIn yet.

{% endif %}
{% csrf_token %}
{% if not request.session.linkedin_authenticated %} You need to authenticate with LinkedIn first. {% endif %} {% if job.linkedin_post_status and 'ERROR' in job.linkedin_post_status %}
{{ job.linkedin_post_status }}
{% endif %}
Applicant Form Management

Manage the custom application forms associated with this job posting.

{# Primary Action: Highlight the creation of a NEW form #} Create New Form {# Secondary Action: Make the list button less prominent #} View All Existing Forms
Applicants ({{ total_candidates }})
{% if total_candidates > 0 %}
{{ applied_count }}
Applied
{{ interview_count }}
Interview
{{ offer_count }}
Offer
{% for candidate in candidates %} {% endfor %}
Name Email Stage Date Applied Actions
{{ candidate.first_name }} {{ candidate.last_name }} {{ candidate.email }} {{ candidate.stage }} {{ candidate.created_at|date:"M d, Y" }} View
{% if candidates|length > 5 %} {% endif %} {% else %}
No applicants yet

Candidates will appear here once they apply for this position.

{% endif %}
Internal Information

Internal Job ID: {{ job.internal_job_id }}

Created: {{ job.created_at|date:"M d, Y" }}

Last Updated: {{ job.updated_at|date:"M d, Y" }}

{% if job.reporting_to %}

Reports To: {{ job.reporting_to }}

{% endif %}
Edit Job Create Candidate Back to Jobs
{% include "jobs/partials/image_upload.html" %} {% endblock %}