{% extends "base.html" %} {% block title %}Dashboard - Facial Recognition System{% endblock %} {% block content %}

{{ face_count }}

Registered Faces

{{ recent_logs|length }}

Recent Recognitions

{{ current_user.role }}

Access Level

{{ current_user.created_at.strftime('%b %d') }}

Member Since

Recent Activity

{% if recent_logs %}
{% for log in recent_logs %}
Face Recognition Event

Recognized as {{ log.recognized_name }} {{ "%.1f%%" | format(log.confidence_score * 100) }}

{{ log.timestamp.strftime('%Y-%m-%d %H:%M:%S') }}
{% endfor %}
{% else %}
No recent activity

Start using face recognition to see your activity here

Start Recognition
{% endif %}
{% endblock %}