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

Legacy Attendance Dashboard

Live view of attendance records from the legacy database

{{ "{:,}".format(stats.total_records or 0) }}

Total Records

{{ "{:,}".format(stats.unique_employees or 0) }}

Employees

{{ "{:,}".format(stats.unique_locations or 0) }}

Locations

{% if stats.earliest_record and stats.latest_record %} {{ stats.earliest_record.strftime('%m/%d/%Y') }} – {{ stats.latest_record.strftime('%m/%d/%Y') }} {% else %} — {% endif %}

Date Range

This page reads live from the legacy database

Records are queried directly from the old attendance system on each visit — nothing is imported or stored locally. Use View All Records to search, filter, and export.

{% endblock %}