{% extends base_template %} {% block content %}
{% csrf_token %}

Delete collection {{ collection }}?

{% if items_total == 0 %}

The collection is empty.

{% else %}

The collection contains {{ items_total }} items:

{% for stats in item_stats %} {% endfor %}
Type Category Status Count
{{ stats.type.name|lower|capfirst }} {{ stats.category }} {{ stats.active|yesno:"active,deleted" }} {{ stats.count }}
{% endif %}
Cancel
{% endblock %}