{% extends "django_deepface/base.html" %} {% block content %}

Face Profile Management

Upload up to 4 different face images for better recognition accuracy.

Your Stored Face Images

{% if face_images %}
{% for identity in face_images %}
Face image {{ identity.image_number }}
{% csrf_token %}
Image {{ identity.image_number }}

Uploaded: {{ identity.created_at|date:"F j, Y" }}

{% endfor %}
{% else %}
You haven't uploaded any face images yet. Upload your first face image below.
{% endif %}
{% if face_images|length < 4 %}
Upload New Face Image
{% csrf_token %} {{ form.as_p }}
{% else %}
You have reached the maximum number of face images (4).
{% endif %}
Capture from Webcam
{% block extra_js %} {% endblock %} {% endblock %}