{% extends "base_authenticated.html" %} {% block title %}Time Attendance Records - {{ COMPANY_NAME }}{% endblock %} {% block extra_head %} {% endblock %} {% block content %}

Time Attendance Records

View and manage imported time attendance data

{% if session.role == 'admin' %} Import Data {% endif %}

Filter Records

{% for emp in employee_display_names %} {{ emp.name }} {% endfor %} {% if employee_filter %} {% endif %}

Attendance Records

{% if records.items %} Showing {{ records.per_page * (records.page - 1) + 1 }} - {{ records.per_page * (records.page - 1) + records.items|length }} of {{ records.total }} records {% else %} No records found {% endif %}
{% if records.items %}
{% for record in records.items %} {% endfor %}
ID Name Platform Date Time Location Name Action Description Event Description Recorded Address Actions
{{ record.employee_id }}
{{ record.resolved_employee_name }}
{{ record.platform or 'Unknown' }} {{ record.attendance_date.strftime('%Y-%m-%d') }} {{ record.attendance_time.strftime('%H:%M:%S') }}
{{ record.location_name }}
{% if record.action_description.lower() == 'check in' %} {% elif record.action_description.lower() == 'check out' %} {% else %} {% endif %} {{ record.action_description }} {{ record.event_description if record.event_description else '-' }} {% if record.recorded_address %} {{ record.recorded_address[:40] }}{% if record.recorded_address|length > 40 %}...{% endif %} {% else %} No address {% endif %}
View {% if session.role == 'admin' %} {% endif %}
{% if records.pages > 1 %} {% endif %} {% else %}

No attendance records found matching your criteria.

{% endif %}
{% endblock %}