{% extends 'base.html' %} {% load static i18n %} {% block title %}{% trans "Create Access Link" %} - ATS{% endblock %} {% block content %}

{% trans "Create Access Link" %}

{% trans "Generate a secure access link for agency to submit candidates" %}

{% trans "Back to Assignments" %}
{% if form.non_field_errors %}
{% for error in form.non_field_errors %} {{ error }} {% endfor %}
{% endif %}
{% csrf_token %}
{{ form.assignment }} {% if form.assignment.errors %}
{% for error in form.assignment.errors %} {{ error }} {% endfor %}
{% endif %}
{% trans "Select the agency job assignment" %}
{{ form.expires_at }} {% if form.expires_at.errors %}
{% for error in form.expires_at.errors %} {{ error }} {% endfor %}
{% endif %}
{% trans "When will this access link expire?" %}
{{ form.max_submissions }} {% if form.max_submissions.errors %}
{% for error in form.max_submissions.errors %} {{ error }} {% endfor %}
{% endif %}
{% trans "Maximum number of candidates agency can submit (leave blank for unlimited)" %}
{{ form.is_active }}
{% if form.is_active.errors %}
{% for error in form.is_active.errors %} {{ error }} {% endfor %}
{% endif %}
{% trans "Whether this access link is currently active" %}
{{ form.notes }} {% if form.notes.errors %}
{% for error in form.notes.errors %} {{ error }} {% endfor %}
{% endif %}
{% trans "Additional notes or instructions for the agency" %}
{% trans "Access links will be generated with a secure token that agencies can use to log in" %}
{% trans "Cancel" %}
{% endblock %} {% block customJS %} {% endblock %}