{% extends 'portal_base.html' %} {% load static i18n %} {% block title %}{% trans "Candidate Dashboard" %} - ATS{% endblock %} {% block content %}
{% trans "Manage your applications and profile" %}
{% trans "Applied Position" %}
{% trans "Current Stage" %}
{% trans "Application Date" %}
{{ 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 %}
| {% trans "Job Title" %} | {% trans "Department" %} | {% trans "Applied Date" %} | {% trans "Current Stage" %} | {% trans "Status" %} | {% trans "Actions" %} |
|---|---|---|---|---|---|
|
{{ application.job.title }}
{% if application.job.department %}
{{ application.job.department }} {% endif %} |
{{ application.job.department|default:"-" }} | {{ application.created_at|date:"M d, Y" }} | {{ application.get_stage_display }} | {% if application.stage == "Hired" %} {% trans "Hired" %} {% elif application.stage == "Rejected" %} {% trans "Rejected" %} {% elif application.stage == "Offer" %} {% trans "Offer Extended" %} {% else %} {% trans "In Progress" %} {% endif %} | {% trans "View Details" %} |
{% trans "You haven't applied to any positions yet. Browse available jobs and submit your first application!" %}
{% trans "Browse Jobs" %}