{% extends "base.html" %} {% load static i18n %} {% block title %}{% trans "Hiring Agencies" %} - {{ block.super }}{% endblock %} {% block content %}

{% trans "Hiring Agencies" %}

{% trans "Add" %}
{% include 'includes/search_form.html' %}
{% if page_obj %} {# --- MOBILE CARD VIEW --- #}
{% for agency in page_obj %}
{{ agency.name }}
{% if agency.email %} {% endif %}
{% if agency.contact_person %}
{{ agency.contact_person }}
{% endif %} {% if agency.phone %}
{{ agency.phone }}
{% endif %} {% if agency.country %}
{{ agency.get_country_display }}
{% endif %} {% if agency.website %} {% endif %}
{% endfor %}
{# --- DESKTOP TABLE VIEW --- #} {% include "includes/paginator.html" %} {% else %}

{% trans "No Hiring Agencies Found" %}

{% if search_query %} {% trans "We couldn't find any agencies matching your search criteria." %} {% else %} {% trans "There are no hiring agencies in the system yet." %} {% endif %}

{% trans "Add First Agency" %}
{% endif %}
{% endblock %}