{% extends "base.html" %} {% load static i18n %} {% block title %}{% trans "Hiring Agencies" %} - {{ block.super }}{% endblock %} {% block content %}
| {% 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:"-" }} | {{ agency.get_country_display|default:"-" }} | {% if agency.website %} {{ agency.website|truncatechars:25 }} {% else %} - {% endif %} | {{ agency.created_at|date:"d-m-Y" }} |
{% 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" %}