{% extends 'portal_base.html' %} {% load static i18n mytags crispy_forms_tags %} {% block title %}{% trans "My Dashboard" %} - ATS{% endblock %} {% block customCSS %} {% endblock %} {% block content %}
{# Header #}

{% trans "Dashboard" %}

{# Applicant Quick Overview Card #}
{% trans 'Profile Picture' %}

{{ applicant.full_name|default:"Applicant Name" }}

{{ applicant.email }}

{# MAIN TABBED INTERFACE #}
{# Tab Navigation #}
{# Tab Content #}
{# Profile Details Tab #}

{% trans "Basic Information" %}

{% trans "First Name" %}
{{ applicant.first_name|default:"" }}
{% trans "Last Name" %}
{{ applicant.last_name|default:"" }}
{% if applicant.middle_name %}
{% trans "Middle Name" %}
{{ applicant.middle_name }}
{% endif %}
{% trans "Email" %}
{{ applicant.email|default:"" }}

{% trans "Contact Information" %}

{% trans "Phone" %}
{{ applicant.phone|default:"" }}
{% if applicant.address %}
{% trans "Address" %}
{{ applicant.address|linebreaksbr }}
{% endif %} {% if applicant.linkedin_profile %}
{% trans "LinkedIn Profile" %}
{% trans "View Profile" %}
{% endif %}

{% trans "Personal Details" %}

{% trans "Date of Birth" %}
{{ applicant.date_of_birth|date:"M d, Y"|default:"" }}
{% trans "Gender" %}
{{ applicant.get_gender_display|default:"" }}
{% trans "Nationality" %}
{{ applicant.get_nationality_display|default:"" }}

{% trans "Professional Information" %}

{% if applicant.user.designation %}
{% trans "Designation" %}
{{ applicant.user.designation }}
{% endif %} {% if applicant.gpa %}
{% trans "GPA" %}
{{ applicant.gpa }}
{% endif %}
{# Applications History Tab #} {# Document Management Tab #}
{# Modals with modern styling #} {% endblock %}