{{ employees_clocked_in|default:0 }}

Present Today

{{ absent_today|default:0 }}

Absent Today

{{ late_today|default:0 }}

Late Arrivals

{{ total_hours_today|floatformat:1|default:"0.0" }}h

Total Hours
Currently Working
{% if current_employees %}
{% for employee in current_employees %}
{{ employee.first_name.0 }}{{ employee.last_name.0 }}
{{ employee.get_full_name }}
{{ employee.department.name|default:"No department" }}
Working
Since {{ employee.clock_in_time|time:"H:i" }}
{% endfor %}
{% else %}

No employees currently clocked in

{% endif %}