{% extends "base_authenticated.html" %} {% block title %}Legacy Attendance Records - {{ COMPANY_NAME }}{% endblock %} {% block extra_head %} {% endblock %} {% block content %}
Live results from the legacy database
| 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 %} |
Try adjusting your filters.