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

🏦 {% trans "Job Bank" %}

{% trans "Explore all available opportunities across departments and find your perfect role" %}

🔄 {% trans "Clear All" %}
📊 {% trans "Found" %} {{ total_jobs }} {%trans "job" %}{{ total_jobs|pluralize }} {% if search_query or department_filter or job_type_filter or workplace_type_filter or status_filter or date_filter %} {% trans "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 }} {% trans "positions" %}
{% endif %}
{{ job.description|striptags|truncatewords:30 }}
{% if job.status == 'ACTIVE' %} {% trans "View Applicants" %} {% endif %} {% trans "View Details" %}
{% endfor %}
{% if page_obj.has_other_pages %} {% include "includes/paginator.html" %} {% endif %} {% else %}

{% trans "No Jobs Found" %}

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

{% trans "Clear Filters" %}
{% endif %}
{% endblock %}