{% extends "base.html" %} {% block title %}Dashboard - Face Attendance{% endblock %} {% block content %}
Active people {{ stats.active_people }}
Total people {{ stats.people }}
Attendance events {{ stats.events }}
Staff accounts {{ stats.accounts }}

Recent attendance

View all
{% if latest_events %}
{% for event in latest_events %} {% endfor %}
Person Type Time Recorded by
{{ event.person.full_name }} {{ event.type_label }} {{ event.occurred_at.strftime("%Y-%m-%d %H:%M") }} {{ event.created_by.full_name if event.created_by else "System" }}
{% else %}
No attendance has been recorded yet.
{% endif %}
{% endblock %}