{% extends "base.html" %} {% block title %}Collections — ExifTree{% endblock %} {% block content %} {% if collections %}

Collections

{% for c in collections %}

{{ c.title }}

{{ c.image_count }} images
{% endfor %}
{% endif %}

Images

{% for img in images %}
{% if img.thumbnail_medium %}{{ img.title }} {% elif img.thumbnail_small %}{{ img.title }}{% endif %} {% include "includes/image_overlay.html" %}
{% empty %}
No images yet.
{% endfor %}
{% endblock %}