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

Employee Management

Total Employees

{{ total_employees }}

All staff members
Active Employees

{{ active_employees }}

Currently employed
New Hires

{{ new_hires_count }}

This month
Departments

{{ departments_count }}

Active departments
Filters
Employees {% if employees %} {{ employees|length }} {% endif %}
{% for employee in employees %} {% empty %} {% endfor %}
Employee Employee ID Department Job Title Hire Date Status Actions
{{ employee.first_name.0 }}{{ employee.last_name.0 }}
{{ employee.get_full_name }}
{{ employee.email|default:"No email" }}
{{ employee.employee_number }} {% if employee.department %} {{ employee.department.name }} {% else %} Not assigned {% endif %} {{ employee.job_title|default:"Not specified" }}
{{ employee.hire_date|date:"M d, Y" }}
{{ employee.hire_date|timesince }} ago
{{ employee.get_employment_status_display }}
No employees found

No employees match your current filters.

Add First Employee
{% if is_paginated %} {% endif %}
{% endblock %}