{% extends "base.html" %} {% block title %}Attendance Report - QR Code Management{% endblock %} {% block content %}
Monitor and analyze staff attendance across all locations
Total Check-ins
All timeUnique Employees
Have checked inActive Locations
With check-insToday's Check-ins
{{ "now"|strftime('%B %d') }}| # | Employee ID | Location | Event | Date | Time | Device | Status | Actions |
|---|---|---|---|---|---|---|---|---|
| {{ loop.index }} |
{{ record.employee_id }}
|
{{ record.location_name }}
|
{{ record.location_event }}
|
{{ record.check_in_date.strftime('%Y-%m-%d') }}
|
{{ record.check_in_time.strftime('%H:%M') }}
|
{{ record.device_info[:20] }}{% if record.device_info|length > 20 %}...{% endif %}
|
{{ record.status.title() }} |
|
{% if date_filter or location_filter or employee_filter %} No records match your current filters. Try adjusting the filter criteria. {% else %} No staff have checked in yet. QR codes need to be scanned to generate attendance data. {% endif %}