{% extends "base.html" %} {% block content %}
All ({{ total_deleted }}) {% for entity in trash_entities %} {% set count = entity_counts.get(entity.table, 0) %} {% if count > 0 %} {{ entity.label }} ({{ count }}) {% endif %} {% endfor %}
{% if deleted_items %}
{% for item in deleted_items %}
{{ item.type_label }} {{ item.name }} {% if item.deleted_at %} Deleted {{ item.deleted_at.strftime('%Y-%m-%d %H:%M') if item.deleted_at else '' }} {% endif %}
{% endfor %}
{% else %}
🗑
Trash is empty
{% endif %} {% endblock %}