{% extends "base_authenticated.html" %} {% block title %}Attendance Report - QR Code Management{% endblock %} {% block extra_head %} {% endblock %} {% block content %}
Monitor and analyze staff attendance with enhanced location tracking
| # | Employee ID | Location | Event | Date | Time | QR Address | Check-in Address | {% if has_location_accuracy_feature %}Location Accuracy{% else %}GPS Accuracy{% endif %} | Device | 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.qr_address[:50] }}{% if record.qr_address|length > 50 %}...{% endif %}
|
{{ record.checked_in_address[:50] }}{% if record.checked_in_address|length > 50 %}...{% endif %}
|
{% if has_location_accuracy_feature and record.location_accuracy %}
{{ "%.3f"|format(record.location_accuracy) }} mi
({{ record.accuracy_level }})
{% elif record.gps_accuracy %}
{{ "%.1f"|format(record.gps_accuracy) }}m
(gps)
{% else %}
Unknown
{% endif %}
|
{{ record.device_info[:20] }}{% if record.device_info|length > 20 %}...{% endif %}
|
|
{% if date_from or date_to 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 %}
{% if date_from or date_to or location_filter or employee_filter %} {% endif %}