{% extends "base.html" %} {% block title %}Matched Images{% endblock %} {% block page_id %}matched-images{% endblock %} {% block page_title %}Matched Images{% endblock %} {% block eyebrow %}Operations{% endblock %} {% block head %} {% endblock %} {% block content %}

Debug

Matched Images

{{ total }} users
Showing {{ rows|length }} of {{ total }} users with matched images
{% if rows %}
{% for row in rows %} {% endfor %}
Sl No Visitor Email Matched Images
{{ loop.index + ((page - 1) * limit) }}
{{ row.name }}
{{ row.name }}
ID: {{ row.user_id }}
{{ row.email or '—' }} {% if row.images %}
{{ row.images|length }} img {% for img in row.images %} {% if loop.index0 < 5 %} Event {{ img.id }} {% endif %} {% endfor %} {% if row.images|length > 5 %} {% endif %}
{% else %} No images yet {% endif %}
{% if total_pages > 1 %}
{% if page > 1 %} « Prev {% endif %} {% for p in range(1, total_pages + 1) %} {% if p == page %} {{ p }} {% elif p <= 2 or p > total_pages - 2 or (p >= page - 1 and p <= page + 1) %} {{ p }} {% endif %} {% endfor %} {% if page < total_pages %} Next » {% endif %}
{% endif %} {% else %}

No matched images found

Face matching hasn't run yet, or no matches exist.

{% endif %}
{% endblock %} {% block scripts %} {% endblock %}