{% 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

Clear

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.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 Records Found

No time attendance records match your current filters.

Clear Filters
{% endif %}
{% endblock %}