{% extends "base.html" %} {% load static %} {% block title %}Delete Employee - {{ employee.get_full_name }} - {{ block.super }}{% endblock %} {% block content %}

Delete Employee

Confirm Employee Deletion
Employee Information
Full Name:
{{ employee.get_full_name }}
Employee ID:
{{ employee.employee_number }}
Department:
{% if employee.department %} {{ employee.department.name }} {% else %} Not assigned {% endif %}
Job Title:
{{ employee.job_title|default:"Not specified" }}
Hire Date:
{{ employee.hire_date|date:"M d, Y" }}
Status:
{{ employee.get_employment_status_display }}
Impact Assessment
Performance Reviews {{ employee.performance_reviews.count }}
Training Records {{ employee.training_records.count }}
Time Entries {{ employee.time_entries.count }}
Schedule Assignments {{ employee.schedule_assignments.count }}
Direct Reports {{ employee.direct_reports.count }}
Data Handling

Choose how to handle the employee's associated data:

{% if deletion_restrictions %} {% endif %}
Final Confirmation
{% csrf_token %}
{% endblock %}