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

{{ title }}

{% if agency %} {% trans "Update the hiring agency information below." %} {% else %} {% trans "Fill in the details to add a new hiring agency." %} {% endif %}

{% trans "Back to Agencies" %}
{% if form.non_field_errors %} {% endif %}
{% csrf_token %}
{% trans "Basic Information" %}
{{ form.name }} {% if form.name.errors %} {% for error in form.name.errors %}
{{ error }}
{% endfor %} {% endif %} {% if form.name.help_text %}
{{ form.name.help_text }}
{% endif %}
{{ form.contact_person }} {% if form.contact_person.errors %} {% for error in form.contact_person.errors %}
{{ error }}
{% endfor %} {% endif %} {% if form.contact_person.help_text %}
{{ form.contact_person.help_text }}
{% endif %}
{{ form.phone }} {% if form.phone.errors %} {% for error in form.phone.errors %}
{{ error }}
{% endfor %} {% endif %} {% if form.phone.help_text %}
{{ form.phone.help_text }}
{% endif %}
{% trans "Contact Information" %}
{{ form.email }} {% if form.email.errors %} {% for error in form.email.errors %}
{{ error }}
{% endfor %} {% endif %} {% if form.email.help_text %}
{{ form.email.help_text }}
{% endif %}
{{ form.website }} {% if form.website.errors %} {% for error in form.website.errors %}
{{ error }}
{% endfor %} {% endif %} {% if form.website.help_text %}
{{ form.website.help_text }}
{% endif %}
{{ form.address }} {% if form.address.errors %} {% for error in form.address.errors %}
{{ error }}
{% endfor %} {% endif %} {% if form.address.help_text %}
{{ form.address.help_text }}
{% endif %}
{% trans "Location Information" %}
{{ form.country }} {% if form.country.errors %} {% for error in form.country.errors %}
{{ error }}
{% endfor %} {% endif %} {% if form.country.help_text %}
{{ form.country.help_text }}
{% endif %}
{{ form.city }} {% if form.city.errors %} {% for error in form.city.errors %}
{{ error }}
{% endfor %} {% endif %} {% if form.city.help_text %}
{{ form.city.help_text }}
{% endif %}
{% trans "Additional Information" %}
{{ form.description }} {% if form.description.errors %} {% for error in form.description.errors %}
{{ error }}
{% endfor %} {% endif %} {% if form.description.help_text %}
{{ form.description.help_text }}
{% endif %}
{% trans "Cancel" %}
{% if agency %} {% else %} {% endif %}
{% trans "Quick Tips" %}
  • {% trans "Provide accurate contact information for better communication" %}
  • {% trans "Include a valid website URL if available" %}
  • {% trans "Add a detailed description to help identify the agency" %}
  • {% trans "All fields marked with * are required" %}
{% if agency %}
{% trans "Agency Information" %}

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

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

{% trans "Slug:" %}
{{ agency.slug }}

{% endif %}
{% endblock %}