Uploaded Images
All event images grouped by day and session
Showing {{ days_data|length }} of {{ total_days }} days
{% if days_data %}
{% for day in days_data %}
+
{{ day.total_images }} imgs
Day {{ day.day_num }}
{% for event in day.events %}
{% endfor %}
+
{{ event.name }}
{{ event.count }} image{{ 's' if event.count != 1 }}
{% if event.images %}
{% else %}
| No | Event Image | Matched User |
|---|---|---|
| {{ loop.index }} |
|
{% if img.matched_users %}
{% for mu in img.matched_users %}
{% else %}
No match found
{% endif %}
{% endfor %}
|
No images uploaded for this event yet.
{% endif %}
{% 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 day events found
Add day events first, then upload images via the Upload page.
{% endfor %}