{% extends 'applicant/partials/candidate_facing_base.html'%} {% load static i18n %} {% block title %}{% trans "My Profile" %} - {{ block.super }}{% endblock %} {% block customCSS %} {% endblock %} {% block content %}
{# Profile Header #}

{% trans "My Candidate Profile" %}

{% trans "Edit Profile" %}
{# Profile and Account Management Row #}
{# Candidate Details Card #}
{% trans 'Profile Picture' %}

{{ candidate.name|default:"N/A" }}

{{ candidate.email }}

  • {% trans "Phone" %} {{ candidate.phone|default:"N/A" }}
  • {% trans "Nationality" %} {{ candidate.get_nationality_display|default:"N/A" }}
  • {% trans "Date of Birth" %} {{ candidate.date_of_birth|date:"M d, Y"|default:"N/A" }}
  • {% trans "Resume" %} {% if candidate.resume %} {% trans "View/Download" %} {% else %} {% trans "Not uploaded" %} {% endif %}
{# Account Management / Quick Actions Card #}

{% trans "Account Settings" %}

{% trans "Your profile is essential for the application process. Keep your resume and contact information up-to-date for timely communication." %}

{# Application Tracking Section #}

{% trans "My Applications History" %}

{% if applications %}
{% for application in applications %} {% endfor %}
{% trans "Job Title" %} {% trans "Applied On" %} {% trans "Current Stage" %} {% trans "Status" %} {% trans "Action" %}
{{ application.job.title }} {{ application.applied_date|date:"d M Y" }} {{ application.stage }} {% if application.is_active %} {% trans "Active" %} {% else %} {% trans "Closed" %} {% endif %} {% trans "Details" %}
{# Placeholder for Pagination #} {% comment %} {% include "includes/paginator.html" with page_obj=applications_page %} {% endcomment %} {% else %}
{% trans "You have no active applications." %}
{% trans "View Available Jobs" %}
{% endif %}
{% endblock %}