{% extends "base.html" %} {% load static humanize i18n %} {% block title %}{{ candidate.name }} - {{ block.super }}{% endblock %} {% block content %}

{{ candidate.name }}

{{ candidate.applied|yesno:"Applied,Pending" }} Stage:
{% if user.is_staff %} {% endif %}

{% trans "Contact Information" %}

{% trans "Email" %} {{ candidate.email }}
{% trans "Job Position" %} {{ candidate.job.title }}
{% trans "Applied Date" %}
{{ candidate.created_at|date:"M d, Y H:i" }} {{ candidate.created_at|naturaltime }}
{% if candidate.resume %}

{% trans "Resume" %}

{{ candidate.resume.name }}

{{ candidate.resume }} • {{ candidate.resume.name|truncatechars:30 }}
{% include "icons/download.html" %} {% trans "Download Resume" %}
{% endif %} {% if candidate.parsed_summary %}

{% trans "Parsed Summary" %}

{{ candidate.parsed_summary|linebreaks }}

{% endif %} {% if parsed %}

{% trans "Parsed Data" %}

{% for key, value in parsed.items %}
{{ key|title }}

{{ value }}

{% endfor %}
{% endif %} {% if user.is_staff %} {% include "recruitment/partials/stage_update_modal.html" with candidate=candidate form=stage_form %} {% endif %} {% endblock %}