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

Legacy Attendance Records

Live results from the legacy database

Filters

Clear

Attendance Records

{% if records and 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 and records.items %}
{% for record in records.items %} {% endfor %}
ID Name Platform Date Time Location Name Action Description Event Description Recorded Address
{{ record.employee_id }}
{{ record.resolved_employee_name }}
{{ 'Manual' if record.is_manual else '—' }} {{ record.record_time.strftime('%Y-%m-%d') if record.record_time else '' }} {{ record.record_time.strftime('%H:%M:%S') if record.record_time else '' }}
{{ record.location_name if record.location_name else '-' }}
{% if record.record_type.lower() == 'check in' %} {% elif record.record_type.lower() == 'check out' %} {% else %} {% endif %} {{ record.record_type }} {{ record.location_address if record.location_address else '-' }} {% if record.recorded_address %} {{ record.recorded_address[:40] }}{% if record.recorded_address|length > 40 %}...{% endif %} {% else %} No address {% endif %}
{% if records.pages > 1 %} {% endif %} {% else %}

No legacy attendance records found

Try adjusting your filters.

{% endif %}
{% endblock %}