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

{{ agency.name }}

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

{{ 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" %}
{{ agency.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 %} {% if generated_password and request.user.is_staff %}
{% trans "Agency Login Information" %}
{% trans "Important Security Notice" %}

{% trans "This password provides access to the agency portal. Share it securely with the agency contact person." %}

{% trans "Username" %}
{{ agency.user.username }}
{% trans "Generated Password" %}
{{ generated_password }}
{% trans "Regenerate Agency Password" %}
{% endif %}
{% if applications %}
{% for application in applications %}
{{ application.name }}

{{ application.email }}

{% if application.phone %}

{{ application.phone }}

{% endif %}

{{ application.job.title }}

{{ application.get_stage_display }}

{{ application.created_at|date:"M d, Y" }}

{% endfor %}
{% else %}
{% trans "No applications yet" %}

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

{% endif %}
{% trans "Application Statistics" %}
{{ total_applications }}
{% trans "Total" %}
{{ active_applications }}
{% trans "Active" %}
{{ hired_applications }}
{% trans "Hired" %}
{{ rejected_applications }}
{% trans "Rejected" %}
{% 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 %}