{% extends 'base.html' %} {% load static i18n %} {% block title %}{% blocktrans %}Offer Stage - {{ job.title }} - University ATS{% endblocktrans %}{% endblock %} {% block content %}

{% trans "Offer Management" %}

{% trans "Applications in Offer Stage:" %} {{ applications|length }}

{% include 'jobs/partials/applicant_tracking.html' %}

{% trans "Applications in Offer Stage" %} {{ applications|length }}

{% if applications %}
{% csrf_token %}
{% endif %}
{% csrf_token %} {% for application in applications %} {% endfor %}
{% if applications %}
{% endif %}
{% trans "Name" %} {% trans "Contact Info" %} {% trans "Offer" %} {% trans "Documents" %} {% trans "Notes" %} {% trans "Actions" %}
{{ application.name }}
{{ application.email }}
{{ application.phone }}
{% if not application.offer_status %} {% else %} {% if application.offer_status %} {% endif %} {% endif %} {% with documents=application.documents.all %} {% if documents %} {% for document in documents %} {% endfor %}
{{ document.get_document_type_display }}
{% trans "Uploaded" %} {{ document.created_at|date:"M d, Y" }}
{% else %}
{% trans "No documents uploaded" %}
{% endif %} {% endwith %}
{% if not applications %}

{% trans "No applications are currently in the Offer stage for this job." %}

{% endif %}
{% endblock %} {% block customJS %} {% endblock %}