{% 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
| ID | Employee | Date | Time | Location | Action | Platform | Import Source | Actions |
|---|---|---|---|---|---|---|---|---|
| {{ record.id }} |
{{ record.employee_name }}
ID: {{ record.employee_id }}
|
{{ record.attendance_date.strftime('%Y-%m-%d') if record.attendance_date else 'N/A' }} | {{ record.attendance_time.strftime('%H:%M:%S') if record.attendance_time else 'N/A' }} | {{ record.location_name }} | {{ record.action_description }} | {{ record.platform or 'N/A' }} |
{{ record.import_source or 'Unknown' }}
{{ record.import_date.strftime('%Y-%m-%d') if record.import_date else '' }}
|
{% if session.role == 'admin' %}
{% 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 %}