{% extends "admin/base_site.html" %} {% load i18n admin_urls static %} {% block extrastyle %} {{ block.super }} {% endblock %} {% block breadcrumbs %} {% endblock %} {% block content %}
⚠️

{% translate 'WARNING: Permanent Deletion' %}

{% translate 'You are about to PERMANENTLY delete the following records.' %}

{% translate 'This action CANNOT be undone. The records will be permanently removed from the database and cannot be restored.' %}

{% blocktranslate with count=count %}{{ count }} record(s) selected for permanent deletion:{% endblocktranslate %}

    {% for obj in queryset %}
  • {{ obj }}
  • {% endfor %}
{% csrf_token %} {# Preserve selected object IDs #} {% for obj in queryset %} {% endfor %}

{% translate 'Type the confirmation text to proceed:' %}

{% translate 'To confirm PERMANENT deletion, please type:' %} {{ expected_confirmation }}

{% endblock %}