{% extends '_include/base.html.twig' %} {% block title %}Employee Attendance{% endblock %} {% block content %}
{{ summary.total_days }}
Total Days
{{ summary.total_hours|number_format(1) }}h
Total Hours
{{ summary.total_overtime|number_format(1) }}h
Overtime
{{ summary.attendance_rate|default(0)|number_format(1) }}%
Attendance Rate
| Date | Employee | Check In | Check Out | Break Start | Break End | Total Hours | Overtime | Status | Actions |
|---|---|---|---|---|---|---|---|---|---|
| {{ clocking.date|date('Y-m-d') }} |
{% if clocking.employee.photo %}
|
{% if clocking.checkInTime %} {{ clocking.checkInTime|date('H:i') }} {% if clocking.isLate %} Late {% endif %} {% else %} --:-- {% endif %} | {% if clocking.checkOutTime %} {{ clocking.checkOutTime|date('H:i') }} {% else %} --:-- {% endif %} | {% if clocking.breakStartTime %} {{ clocking.breakStartTime|date('H:i') }} {% else %} --:-- {% endif %} | {% if clocking.breakEndTime %} {{ clocking.breakEndTime|date('H:i') }} {% else %} --:-- {% endif %} | {% if clocking.totalWorkedHours %} {{ clocking.totalWorkedHours|number_format(2) }}h {% else %} -- {% endif %} | {% if clocking.overtimeHours and clocking.overtimeHours > 0 %} {{ clocking.overtimeHours|number_format(2) }}h {% else %} -- {% endif %} | {% if clocking.checkOutTime %} Complete {% elseif clocking.checkInTime %} Working {% else %} Absent {% endif %} | |
| No attendance records found | |||||||||