{% extends 'base.html' %} {% load markdown_extras %} {% block title %}Candidates for {{ job_posting.title }}{% endblock %} {% block content %}

Candidates for: {{ job_posting.title }}


Order by: AI Score (High to Low) | AI Score (Low to High) | Application Date (Newest First) | Application Date (Oldest First)


Applicants ({{ applications.count }})

{% if applications %} {% for app in applications %}

{{ app.user.first_name }} {{ app.user.last_name }}

AI Score: {{ app.ai_score|floatformat:2|default:"N/A" }}

Applied on: {{ app.application_date|date:"Y-m-d H:i" }}

Tags: {% for tag in app.user.applicant.tags.all %} {{ tag.name }}{% if not forloop.last %}, {% endif %} {% empty %} No tags {% endfor %}

Email: {{ app.user.email }}

{# Added email #}

Phone: {{ app.user.applicant.phone_number|default:"N/A" }}

{# Added phone #}

Current Title: {{ app.user.applicant.current_title|default:"N/A" }}

{# Added current title #}

Organization: {{ app.user.applicant.latest_work_organization|default:"N/A" }}

Degree: {{ app.user.applicant.latest_degree|default:"N/A" }} at {{ app.user.applicant.school|default:"N/A" }}

LinkedIn: {% if app.user.applicant.linkedin_profile %} View Profile {% else %} N/A {% endif %}

Download Resume PDF

{% if app.user.applicant.resume_markdown %} {{ app.user.applicant.resume_markdown|markdown_to_html }} {% else %}

No resume content available in Markdown format.

{% endif %}
{% endfor %} {% if is_paginated %} {% endif %} {% else %}

No candidates found for this job posting.

{% endif %}

Resume Content

Select a candidate's "View Resume" button to see their resume here.

{% endblock %}