{% extends "base.html" %} {% load static i18n %} {% block title %}{{ person.get_full_name }} - {{ block.super }}{% endblock %} {% block content %}
{% if person.profile_image %} {{ person.get_full_name }} {% else %}
{% endif %}

{{ person.get_full_name }}

{% if person.email %}

{{ person.email }}

{% endif %}
{% if person.nationality %} {{ person.nationality }} {% endif %} {% if person.gender %} {% if person.gender == 'M' %}{% trans "Male" %}{% else %}{% trans "Female" %}{% endif %} {% endif %} {% if person.user %} {% trans "User Account" %} {% endif %}

{% trans "Personal Information" %}

{% trans "Full Name" %} {{ person.full_name|title }}
{% if person.first_name %}
{% trans "First Name" %} {{ person.first_name }}
{% endif %} {% if person.last_name %}
{% trans "Last Name" %} {{ person.last_name }}
{% endif %} {% if person.date_of_birth %}
{% trans "Date of Birth" %} {{ person.date_of_birth }}
{% endif %} {% if person.gender %}
{% trans "Gender" %} {% if person.gender == 'M' %}{% trans "Male" %}{% else %}{% trans "Female" %}{% endif %}
{% endif %} {% if person.nationality %}
{% trans "Nationality" %} {{ person.nationality }}
{% endif %}

{% trans "Contact Information" %}

{% if person.email %}
{% trans "Email" %} {{ person.email }}
{% endif %} {% if person.phone %}
{% trans "Phone" %} {{ person.phone }}
{% endif %} {% if person.address %}
{% trans "Address" %} {{ person.address }}
{% endif %} {% if person.linkedin_profile %}
{% trans "LinkedIn" %} {% trans "View Profile" %}
{% endif %}

{% trans "Applications" %} {{ person.applications.count }}

{% if person.applications %}
{% for application in person.applications.all %}
{{ application.job.title }}

{% trans "Applied" %}: {{ application.created_at|date:"d M Y" }}

{{ application.stage }}
{% endfor %}
{% else %}

{% trans "No applications found" %}

{% endif %}

{% trans "Documents" %} {{ person.documents.count }}

{% if person.documents %}
{% for document in person.documents %}
{{ document.filename }}

{{ document.file_size|filesizeformat }} • {{ document.uploaded_at|date:"d M Y" }}

{% endfor %}
{% else %}

{% trans "No documents found" %}

{% endif %}

{% trans "System Information" %}

{% trans "Created" %} {{ person.created_at|date:"d M Y H:i" }}
{% trans "Last Updated" %} {{ person.updated_at|date:"d M Y H:i" }}
{% if person.user.last_login %}
{% trans "Last Login" %} {{ person.user.last_login|date:"d M Y H:i" }}
{% endif %} {% if person.user %}
{% trans "User Account" %} {{ person.user.username }}
{% endif %}
{% trans "Back to Applicants" %} {% if user.is_staff %} {% endif %}
{% endblock %}