{% extends "base_authenticated.html" %} {% block title %}Time Attendance Records - {{ COMPANY_NAME }}{% endblock %} {% block extra_head %} {% endblock %} {% block page_title %}Time Attendance Records{% endblock %} {% block content %}
View and manage imported time attendance data
| Employee | Date & Time | Action | Location | Platform | Address | Actions |
|---|---|---|---|---|---|---|
|
{{ record.employee_name[0].upper() if record.employee_name else record.employee_id[0].upper() }}
{{ record.employee_name }}
ID: {{ record.employee_id }}
|
{{ record.attendance_date.strftime('%Y-%m-%d') }}
{{ record.attendance_time.strftime('%H:%M:%S') }}
|
{% if record.action_description.lower() == 'check in' %} {% elif record.action_description.lower() == 'check out' %} {% else %} {% endif %} {{ record.action_description }} |
{{ record.location_name }}
|
{{ record.platform or 'Unknown' }} | {% if record.recorded_address %} {{ record.recorded_address[:30] }}{% if record.recorded_address|length > 30 %}...{% endif %} {% else %} No address {% endif %} |
{% if current_filters.employee_id or current_filters.location_name or current_filters.start_date or current_filters.end_date %} No attendance records match your current filter criteria. Try adjusting your filters or clearing them to see all records. {% else %} No time attendance records have been imported yet. Import your first Excel file to get started. {% endif %}
{% if current_filters.employee_id or current_filters.location_name or current_filters.start_date or current_filters.end_date %} Clear Filters {% elif session.role == 'admin' %} Import Records {% endif %}