{% extends "base_authenticated.html" %} {% set page_title = "Employee Details - " + employee.full_name %} {% block title %}{{ page_title }}{% endblock %} {% block extra_head %} {% endblock %} {% block content %}

{{ employee.full_name }}

Employee ID: {{ employee.id }}
{{ employee.display_title }}
Contract: {{ employee.contract_name }}
{% if attendance_stats.latest_attendance %}
Last seen: {{ attendance_stats.latest_attendance.check_in_date.strftime('%B %d, %Y') }}
{% endif %}

Personal Information

First Name: {{ employee.firstName }}

Last Name: {{ employee.lastName }}

Full Name: {{ employee.full_name }}

Employment Details

Employee ID: {{ employee.id }}

Job Title: {{ employee.display_title }}

Contract ID: {{ employee.contract_name }}

System Information

Database Index: {{ employee.index }}

Record Status: Active

Attendance Records: {{ attendance_stats.total_attendance }}

Attendance Statistics

{{ attendance_stats.total_attendance }}

Total Attendance

{{ attendance_stats.recent_attendance }}

Last 30 Days

{{ attendance_stats.unique_projects }}

Unique Projects

{% if attendance_stats.latest_attendance %}

{{ attendance_stats.latest_attendance.check_in_date.strftime('%m/%d') }}

Latest Check-in

{% endif %}
{% if attendance_stats.projects %}

Projects Participated ({{ attendance_stats.unique_projects }})

{% for project in attendance_stats.projects %}

{{ project.name }}

{% if project.description %} {{ project.description[:100] }}{% if project.description|length > 100 %}...{% endif %} {% else %} No description available {% endif %}

{% endfor %}
{% else %}

No Projects Yet

This employee hasn't participated in any projects yet.

{% endif %}
{% endblock %}