{% extends "base.html" %} {% block title %}Attendance ยท Face Attendance{% endblock %} {% block content %}
{% if events %}
{% for event in events %} {% endfor %}
Person Employee ID Type Time Source Recorded by
{{ event.person.full_name }} {{ event.person.employee_id }} {{ event.type_label }} {{ event.occurred_at.strftime("%Y-%m-%d %H:%M") }} {{ event.source }} {{ event.created_by.full_name if event.created_by else "System" }}
{% else %}
No attendance has been recorded yet.
{% endif %}
{% endblock %}