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

Dashboard

Welcome back, {{ current_user.username }}!

{{ encodings|length }}

Uploaded Photos

Active

Recognition Status

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

Member Since

Live Camera Feed

Camera Feed

Quick Actions

System Status
Camera: Online
Face Detection: Ready
Database: Connected
{% if encodings %}

Your Photos

{% for encoding in encodings %}
{{ encoding.filename }}
{{ encoding.created_at.strftime('%b %d, %Y at %I:%M %p') }}
{% endfor %}
{% else %}

No Photos Yet

Upload your first photo to start using facial recognition.

Upload Your First Photo
{% endif %}
{% endblock %} {% block scripts %} {% endblock %}