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

Job Postings

Create New Job
Filter & Search
{# Show Clear button if any filter/search is active #} {% if status_filter or search_query %} Clear Filters {% endif %}
{% if page_obj %}
{% for job in page_obj %}
{{ job.title }}
{{ job.get_status_display }}

{{ job.department|default:"No Department" }}
{{ job.get_location_display }}
{{ job.get_job_type_display }}
{{ job.get_source }}

{% if job.posted_to_linkedin %} Posted to LinkedIn {% endif %}
{% endfor %}
{% if page_obj.has_other_pages %} {% endif %} {% else %}

No job postings found

Create your first job posting to get started or adjust your filters.

Create Job
{% endif %}
{% endblock %}