{% extends "base.html" %} {% block title %}Attendance Report{% endblock %} {% block extra_css %} {% endblock %} {% block content %}
Comprehensive attendance tracking with location data for {{ current_date_formatted }}
Total Check-ins
Unique Employees
Today's Check-ins
With GPS Location
{{ location_coverage }}% coverage| # | Employee ID | Location | Event | Date | Time | GPS Status | Coordinates | Accuracy | Address | 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') }}
|
{% if record.latitude and record.longitude %} GPS {% else %} No GPS {% endif %} |
{% if record.latitude and record.longitude %}
{{ "%.6f"|format(record.latitude) }}
{% else %}
Not available
{% endif %}
{{ "%.6f"|format(record.longitude) }} |
{% if record.location_accuracy %} {% set accuracy_class = 'high' if record.location_accuracy <= 50 else ('medium' if record.location_accuracy <= 100 else 'low') %} ±{{ "%.0f"|format(record.location_accuracy) }}m {% else %} - {% endif %} |
{% if record.address %}
{{ record.address }}
{% else %}
Not resolved
{% endif %}
|
{{ record.device_info }}
|
{{ record.status.title() }} |
{% if date_filter or location_filter or employee_filter %} No attendance records match your current filters. {% else %} No attendance records available yet. {% endif %}
{% if date_filter or location_filter or employee_filter %} {% endif %}