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

{% trans "Hiring Agencies" %}

{% trans "Total Agencies:" %} {{ total_agencies }}

{% include 'includes/search_form.html' %}
{% if page_obj %}
{% include "includes/_list_view_switcher.html" with list_id="agency-list" %}
{% for agency in page_obj %} {% endfor %}
{% trans "Agency Name" %} {% trans "Contact Person" %} {% trans "Email" %} {% trans "Phone" %} {% trans "Country" %} {% trans "Website" %} {% trans "Created" %} {% trans "Actions" %}
{{ agency.name }} {{ agency.contact_person|default:"-" }} {% if agency.email %} {{ agency.email|truncatechars:30 }} {% else %} - {% endif %} {{ agency.phone|default:"-" }} {% if agency.country %} {{ agency.get_country_display }} {% else %} - {% endif %} {% if agency.website %} {{ agency.website|truncatechars:25 }} {% else %} - {% endif %} {{ agency.created_at|date:"M d, Y" }}
{% for agency in page_obj %}
{{ agency.name }}
{% if agency.email %} {% endif %}
{% if agency.contact_person %}

{% trans "Contact:" %} {{ agency.contact_person }}

{% endif %} {% if agency.phone %}

{{ agency.phone }}

{% endif %} {% if agency.country %}

{{ agency.get_country_display }}

{% endif %} {% if agency.website %}

{{ agency.website|truncatechars:30 }}

{% endif %}
{% trans "Created" %} {{ agency.created_at|date:"M d, Y" }}
{% endfor %}
{% if page_obj.has_other_pages %} {% endif %} {% else %}

{% if search_query %} {% trans "No agencies found matching your search criteria." %} {% else %} {% trans "No hiring agencies have been added yet." %} {% endif %}

{% trans "Start by adding your first hiring agency to manage your recruitment partners." %}

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