{% extends "base_authenticated.html" %} {% set page_title = "Employee Details - " + employee.full_name %} {% block title %}{{ page_title }}{% endblock %} {% block extra_head %} {% endblock %} {% block content %}
First Name: {{ employee.firstName }}
Last Name: {{ employee.lastName }}
Full Name: {{ employee.full_name }}
Employee ID: {{ employee.id }}
Job Title: {{ employee.display_title }}
Contract ID: {{ employee.contractId }}
Database Index: {{ employee.index }}
Record Status: Active
Attendance Records: {{ attendance_stats.total_attendance }}
Total Attendance
Last 30 Days
Unique Projects
Latest Check-in
{% if project.description %} {{ project.description[:100] }}{% if project.description|length > 100 %}...{% endif %} {% else %} No description available {% endif %}
This employee hasn't participated in any projects yet.