{% extends 'base.html' %} {% load static i18n %} {% block title %}{{ agency.name }} - {% trans "Agency Details" %} - ATS{% endblock %} {% block customCSS %} {% endblock %} {% block content %}

{{ agency.name }}

{% trans "Hiring Agency Details and Candidate Management" %}

{% trans "Assign job" %} {% trans "Edit Agency" %} {% trans "Back to Agencies" %}

{{ agency.name }}

{% if agency.contact_person %}

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

{% endif %} {% if agency.email %}

{{ agency.email }}

{% endif %}
{% if agency.website %} {% trans "Website" %} {% endif %} {% if agency.email %} {% trans "Email" %} {% endif %}
{% trans "Contact Information" %}
{% if agency.phone %}
{% trans "Phone" %}
{{ agency.phone }}
{% endif %} {% if agency.email %}
{% trans "Email" %}
{{ agency.email }}
{% endif %} {% if agency.website %}
{% trans "Website" %}
{% endif %}
{% trans "Location Information" %}
{% if agency.address %}
{% trans "Address" %}
{{ agency.address }}
{% endif %} {% if agency.city %}
{% trans "City" %}
{{ agency.city }}
{% endif %} {% if agency.country %}
{% trans "Country" %}
{{ agency.get_country_display }}
{% endif %}
{% if agency.description %}
{% trans "Description" %}

{{ agency.description|linebreaks }}

{% endif %}
{% trans "Recent Candidates" %}
{% trans "View All Candidates" %}
{% if candidates %} {% for candidate in candidates %}
{{ candidate.name }}
{{ candidate.email }} {% if candidate.phone %} {{ candidate.phone }} {% endif %}
{{ candidate.get_stage_display }}
{{ candidate.created_at|date:"M d, Y" }}
{% endfor %} {% else %}
{% trans "No candidates yet" %}

{% trans "This agency hasn't submitted any candidates yet." %}

{% endif %}
{% trans "Candidate Statistics" %}
{{ total_candidates }}
{% trans "Total" %}
{{ active_candidates }}
{% trans "Active" %}
{{ hired_candidates }}
{% trans "Hired" %}
{{ rejected_candidates }}
{% trans "Rejected" %}
{% comment %} {% endcomment %}
{% trans "Agency Information" %}

{% trans "Created:" %}
{{ agency.created_at|date:"F d, Y" }}

{% trans "Last Updated:" %}
{{ agency.updated_at|date:"F d, Y" }}

{% trans "Agency ID:" %}
{{ agency.slug }}

{% endblock %}