{% extends "base.html" %} {% load static i18n %} {% block title %}{{ title }} - {{ block.super }}{% endblock %} {% block content %}

{{ title }}

{% trans "About Assignments" %}

{% trans "Assign a job to an external hiring agency. The agency will be able to submit candidates for this position until the deadline." %}

{% trans "Assignment Details" %}

{% if form.non_field_errors %} {% endif %}
{% csrf_token %}
{% if form.agency.errors %}
{{ form.agency.errors.0 }}
{% endif %} {% if form.agency.help_text %}

{{ form.agency.help_text }}

{% endif %}
{% if form.job.errors %}
{{ form.job.errors.0 }}
{% endif %} {% if form.job.help_text %}

{{ form.job.help_text }}

{% endif %}
{% if form.max_candidates.errors %}
{{ form.max_candidates.errors.0 }}
{% endif %} {% if form.max_candidates.help_text %}

{{ form.max_candidates.help_text }}

{% else %}

{% trans "Maximum number of candidates agency can submit" %}

{% endif %}
{% if form.deadline_date.errors %}
{{ form.deadline_date.errors.0 }}
{% endif %} {% if form.deadline_date.help_text %}

{{ form.deadline_date.help_text }}

{% else %}

{% trans "Date and time when submission period ends" %}

{% endif %}
{% if form.admin_notes.errors %}
{{ form.admin_notes.errors.0 }}
{% endif %} {% if form.admin_notes.help_text %}

{{ form.admin_notes.help_text }}

{% endif %}
{% trans "Cancel" %}
{% endblock %}