{% extends "base.html" %} {% from "macros.html" import icon %} {% block title %}{{ t('Trash') }}{% endblock %} {% block content %} {% if model_slugs | length > 1 %}
{{ t('Filter') }}: {{ t('All') }} {% for m in model_slugs %} {{ m.label }} {% endfor %}
{% endif %} {% if items %}
{% for it in items %} {% endfor %}
{{ t('Model') }} {{ t('ID') }} {{ t('Record') }} {{ t('Deleted at') }}
{{ it.model_slug }} #{{ it.object_id }} {{ it.object_repr or '—' }} {{ it.deleted_at }}
{{ request.csrf_input() }}
{{ request.csrf_input() }}
{% if pages > 1 %} {% endif %} {% else %}
{{ icon('trash', 48) }}

{{ t('Trash is empty') }}

{% endif %} {% endblock %}