{% extends "base.html" %} {% load static %} {% block title %}Job Bank - All Opportunities{% endblock %} {% block customCSS %} {% endblock %} {% block content %}

๐Ÿฆ Job Bank

Explore all available opportunities across departments and find your perfect role

๐Ÿ”„ Clear All
๐Ÿ“Š Found {{ total_jobs }} job{{ total_jobs|pluralize }} {% if search_query or department_filter or job_type_filter or workplace_type_filter or status_filter or date_filter %} with filters applied {% endif %}
{% if page_obj.object_list %}
{% for job in page_obj.object_list %}
{{ job.get_status_display }}

{{ job.title }}

๐Ÿ“ {{ job.department|default:"General" }}
๐Ÿ’ผ {{ job.get_job_type_display }}
๐Ÿข {{ job.get_workplace_type_display }}
{% if job.max_applications %}
๐Ÿ‘ฅ {{ job.max_applications }} positions
{% endif %}
{{ job.description|striptags|truncatewords:30 }}
{% if job.status == 'ACTIVE' %} ๏ฟฝ View Applicants {% endif %} ๐Ÿ‘๏ธ View Details
{% endfor %}
{% if page_obj.has_other_pages %} {% endif %} {% else %}

๐Ÿ˜” No Jobs Found

{% if search_query or department_filter or job_type_filter or workplace_type_filter or status_filter or date_filter %} We couldn't find any jobs matching your current filters. Try adjusting your search criteria or clearing some filters. {% else %} There are currently no job postings in the system. Check back later for new opportunities! {% endif %}

๐Ÿ”„ Clear Filters
{% endif %}
{% endblock %}