{% extends 'base.html' %} {% load i18n %} {% load static %} {% block extra_css %} {% endblock %} {% block content %}
{% trans "Collections" %}

{{ collection.name }}

{{ collection.images.count }} {% trans "images" %} · {{ collection.created_at|date:"Y-m-d" }} {% if collection.updated_at != collection.created_at %} · {% trans "Updated" %} {{ collection.updated_at|date:"Y-m-d" }} {% endif %}
{% if collection.description %}

{{ collection.description }}

{% endif %} {% if collection.tags.exists %}
{% for tag in collection.tags.all %} {{ tag.name }} {% endfor %}
{% endif %}
{% trans "Slideshow" %} {% trans "Edit" %}
{% trans "Drag & drop images here" %}
{% trans "or click to browse · JPG, PNG, WebP, GIF, HEIC" %}
{% for image in collection.images.all %} {% empty %}

{% trans "No images yet" %}

{% trans "Drop some images above to start this collection." %}

{% endfor %}
{{ image_data|json_script:"image-data" }} {% endblock %} {% block extra_js %} {% endblock %}