{% extends "base.html" %} {% block title %}Recognition Logs - Facial Recognition System{% endblock %} {% block content %}
{% if current_user.role == 'Admin' %} Complete system recognition history {% else %} Your facial recognition activity history {% endif %}
| Timestamp | {% if current_user.role == 'Admin' %}User | {% endif %}Recognized As | Confidence | Type | Status |
|---|---|---|---|---|---|
| {% if current_user.role == 'Admin' %} | {% if log.user %} {% else %} System {% endif %} | {% endif %}
{{ log.recognized_name }}
|
{% if log.confidence_score %}
|
{{ log.recognition_type.title() }} | {% if log.confidence_score %} {% if log.confidence_score > 0.8 %} High Confidence {% elif log.confidence_score > 0.5 %} Medium Confidence {% else %} Low Confidence {% endif %} {% else %} Unknown {% endif %} |
{% if current_user.role == 'Admin' %} No recognition events have been recorded in the system yet. {% else %} You haven't used the face recognition system yet. {% endif %}
Start Recognition