{% extends "base.html" %} {% load static i18n %} {% block title %}Job Postings - University ATS{% endblock %} {% block customCSS %} {% endblock %} {% block content %}

{% trans "Job Postings" %}

{% trans "Create New Job" %}
{% include 'includes/search_form.html' %}
{% trans "Clear" %}
{% comment %} --- START OF TABLE VIEW (Data relied upon context variable 'jobs') --- {% endcomment %}
{% comment %} Placeholder for View Switcher {% endcomment %} {% include "includes/_list_view_switcher.html" with list_id="job-list" %}
{% comment %} {% endcomment %} {% comment %} This loop relies on the 'jobs' variable passed from the Django view {% endcomment %} {% for job in jobs %} {% comment %} {% endcomment %} {# CANDIDATE MANAGEMENT DATA - 7 SEPARATE COLUMNS CORRESPONDING TO THE HEADER #} {% endfor %}
{% trans "Job ID" %}{% trans "Job Title" %} {% trans "Status" %}{% trans "Source" %} {% trans "Actions" %} {% trans "Manage Forms" %} {% trans "Applicants Metrics" %}
{% trans "Applied" %} {% trans "Screened" %} {% trans "Exam" %}
P F
{% trans "Interview" %}
P F
{% trans "Offer" %}
{{ job }}{{ job.title }} {{ job.status }}{{ job.get_source }} {% if job.metrics.applied %}{{ job.metrics.applied }}{% else %}-{% endif %} {% if job.metrics.screening %}{{ job.metrics.screening }}{% else %}-{% endif %} {% if job.metrics.exam_p %}{{ job.metrics.exam_p }}{% else %}-{% endif %} {% if job.metrics.exam_f %}{{ job.metrics.exam_f }}{% else %}-{% endif %} {% if job.metrics.interview_p %}{{ job.metrics.interview_p }}{% else %}-{% endif %} {% if job.metrics.interview_f %}{{ job.metrics.interview_f }}{% else %}-{% endif %} {% if job.metrics.offer %}{{ job.metrics.offer }}{% else %}-{% endif %}
{% comment %} Fallback/Empty State {% endcomment %} {% if not jobs and not job_list_data and not page_obj %}

{% trans "No job postings found" %}

{% trans "Create your first job posting to get started or adjust your filters." %}

{% trans "Create Job" %}
{% endif %}
{% endblock %}