{% extends "paxalia/base.html" %} {% load static i18n %} {% block title %}{% trans "Delete selected" %} ยท Paxalia{% endblock %} {% block page_title %}{% trans "Delete selected" %}{% endblock %} {% block page_subtitle %}{% trans "Confirm this bulk destructive operation" %}{% endblock %} {% block extra_css %}{% endblock %} {% block dashboard_content %}
{% trans "Paxalia Admin" %}/{{ definition.verbose_name_plural }}/{% trans "Delete selected" %}
{% trans "Destructive action" %}

{% blocktrans with count=selected_count %}Delete {{ count }} records?{% endblocktrans %}

{% trans "Review the selection before confirming. The registered ModelAdmin delete_queryset behavior and Django's normal deletion semantics will be used." %}

{% trans "Please review" %}

{% trans "This action cannot be undone" %}

{% trans "Only proceed after confirming that the selected records are safe to remove." %}

{% trans "Selected" %}{{ selected_count }}
{% trans "Preview" %}{{ objects|length }}
{% trans "Not shown" %}{{ remaining_count }}
{% trans "Selected records" %}

{% trans "Review" %}

{% for obj in objects %}
{{ obj.display }}
{% empty %}

{% trans "No objects remain selected." %}

{% endfor %}{% if remaining_count %}

{% blocktrans with count=remaining_count %}Plus {{ count }} additional records not displayed here.{% endblocktrans %}

{% endif %}
{% trans "Cancel" %}
{% csrf_token %}
{% endblock %} {% block page_scripts %}{% endblock %}