{% extends "base_authenticated.html" %} {% block title %}Time Attendance Dashboard - {{ COMPANY_NAME }}{% endblock %} {% block extra_head %} {% endblock %} {% block page_title %}Time Attendance{% endblock %} {% block content %}
Import, manage, and analyze employee time attendance data from Excel files
Total Records
Unique Employees
Locations
Recent Imports
| Import Date | Source | Records | Batch ID | Actions |
|---|---|---|---|---|
| {{ import_batch.import_date.strftime('%Y-%m-%d %H:%M') if import_batch.import_date else 'Unknown' }} |
{{ import_batch.import_source or 'Excel Import' }}
|
{{ "{:,}".format(import_batch.record_count) }} records |
{{ import_batch.import_batch_id[:8] }}...
|
View |
Get started by importing your first Excel file with time attendance data. The system supports various Excel formats and will automatically process your data.
{% if session.role == 'admin' %} Import Your First File {% endif %}