{% extends 'base.html' %} {% load i18n %} {% load static %} {% block extra_css %} {% endblock %} {% block content %}
{% trans "Back to Collections" %}
{% if collection.description %}

{% trans "Description" %}

{{ collection.description }}

{% endif %} {% if collection.tags.exists %}
{% for tag in collection.tags.all %} {% with number=forloop.counter %} {{ tag.name }} {% endwith %} {% endfor %}
{% endif %}
{% for image in collection.images.all %} {% empty %}

{% trans "No images" %}

{% trans "Upload some images to get started." %}

{% endfor %}
{% endblock %} {% block extra_js %} {% endblock %}