{% extends "base.html" %} {% block title %}People ยท Face Attendance{% endblock %} {% block content %}
{% if people %}
{% for person in people %} {% endfor %}
Name Employee ID Face samples Status Actions
{{ person.full_name }} {{ person.employee_id }} {{ person.face_encodings|length }} {{ "Active" if person.active else "Inactive" }} {% if current_user.can_operate %}
{% endif %}
{% else %}
No people have been enrolled yet.
{% endif %}
{% endblock %}