{% extends "base.html" %} {% load static i18n %} {% block title %}Applications - {{ block.super }}{% endblock %} {% block customCSS %} {% endblock %} {% block content %}
| {% trans "Name" %} | {% trans "Email" %} | {% trans "Job" %} | {% trans "Major" %} | {% trans "Stage" %} | {% trans "Hiring Source" %} | {% trans "Created At" %} | {% trans "Actions" %} |
|---|---|---|---|---|---|---|---|
| {{ candidate.name }} | {{ candidate.email }} | {{ candidate.job.title }} | {% if candidate.is_resume_parsed %} {% if candidate.professional_category != 'Uncategorized' %} {{ candidate.professional_category }} {% endif %} {% else %} {% endif %} | {{ candidate.stage }} | {% if candidate.hiring_agency and candidate.hiring_source == 'Agency' %} {{ candidate.hiring_agency.name }} {% else %} {{ candidate.hiring_source }} {% endif %} | {{ candidate.created_at|date:"d-m-Y" }} |
{{ candidate.email }} {{ candidate.phone|default:"N/A" }} {{ candidate.created_at|date:"d-m-Y" }} {{ candidate.job.title }} {% if candidate.hiring_agency %} {{ candidate.hiring_agency.name }} {% endif %}
{% trans "Create your first application." %}
{% if user.is_staff %} {% trans "Add Application" %} {% endif %}