{% extends 'portal_base.html' %} {% load static i18n %} {% block title %}{% trans "Candidate Dashboard" %} - ATS{% endblock %} {% block content %}

{% trans "Welcome" %} {{ candidate.first_name }}

{% trans "Manage your applications and profile" %}

{% comment %}
{% trans "Active" %}
{% endcomment %}
{{ candidate.job.title|default:"No Job" }}

{% trans "Applied Position" %}

{{ candidate.stage|default:"Applied" }}

{% trans "Current Stage" %}

{{ candidate.created_at|date:"M d, Y" }}

{% trans "Application Date" %}

{% trans "Profile Information" %}

{{ candidate.first_name }} {{ candidate.last_name }}

{{ candidate.email }}

{{ candidate.phone|default:"Not provided" }}

{% if candidate.resume %} {% trans "Download Resume" %} {% else %} {% trans "No resume uploaded" %} {% endif %}

{% endblock %}