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

Job Postings

Create New Job
{% include 'includes/search_form.html' %}
{% url 'job_list' as job_list_url %}
{% 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 %}