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

{{ title }}

{% trans "Assign a job to an external hiring agency" %}

{% trans "Back to Assignments" %}
{% csrf_token %} {{ form.agency }}
{% comment %}
{{ form.agency }} {% if form.agency.errors %}
{% for error in form.agency.errors %}{{ error }}{% endfor %}
{% endif %}
{% endcomment %}
{{ form.job }} {% if form.job.errors %}
{% for error in form.job.errors %}{{ error }}{% endfor %}
{% endif %}
{{ form.max_candidates }} {% if form.max_candidates.errors %}
{% for error in form.max_candidates.errors %}{{ error }}{% endfor %}
{% endif %} {% trans "Maximum number of candidates the agency can submit" %}
{{ form.deadline_date }} {% if form.deadline_date.errors %}
{% for error in form.deadline_date.errors %}{{ error }}{% endfor %}
{% endif %} {% trans "Date and time when submission period ends" %}
{% comment %}
{{ form.is_active }}
{% if form.is_active.errors %}
{% for error in form.is_active.errors %}{{ error }}{% endfor %}
{% endif %}
{{ form.status }} {% if form.status.errors %}
{% for error in form.status.errors %}{{ error }}{% endfor %}
{% endif %} {% trans "Current status of this assignment" %}
{% endcomment %}
{{ form.admin_notes }} {% if form.admin_notes.errors %}
{% for error in form.admin_notes.errors %}{{ error }}{% endfor %}
{% endif %} {% trans "Internal notes about this assignment (not visible to agency)" %}
{% trans "Cancel" %}
{% comment %}
{% trans "Assignment Information" %}
{% trans "Active Status" %}

{% trans "Only active assignments allow agencies to submit candidates. Expired or cancelled assignments cannot receive new submissions." %}

{% trans "Access Links" %}

{% trans "After creating an assignment, you can generate access links for agencies to submit candidates through their portal." %}

{% endcomment %}
{% endblock %} {% block customJS %} {% endblock %}