{% extends "base.html" %} {% block title %}Shortlist – {{ job.title }}{% endblock %} {% block content %}

Shortlist for {{ job.title }}

Status: {{ shortlist.status }}
{% for app in applicants %} {% endfor %}
NameEmailPhoneProfile % Match ScoreShortlist
{{ app.user.full_name }} {{ app.user.email }} {{ app.profile.phone or 'Not provided' }} {{ app.completeness }}% {{ app.match_score }}%
Your Shortlist

No candidates added yet.

    {% for item in shortlist.items %}
  • {{ item.profile.user.full_name }}
  • {% endfor %}

Interviews

{% if interviews %} {% for interview in interviews %}
{{ interview.title }} {{ interview.status }} Ref: {{ interview.reference }}
{{ interview.candidates.count() }} candidates

Date: {{ interview.date.strftime('%A, %B %d, %Y at %H:%M') }}

Location: {{ interview.location or 'TBD' }}

{{ interview.description }}

Export Excel
{% for candidate in interview.candidates %} {% endfor %}
NameEmailStatus Score (0-100)Notes
{{ candidate.shortlist_item.profile.user.full_name }} {{ candidate.shortlist_item.profile.user.email }} {{ candidate.status }}
{% endfor %} {% else %}

No interviews created yet. Create one using the button above.

{% endif %}
{% for interview in interviews %} {% endfor %} {% endblock %} {% block scripts %} {% endblock %}