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

⚠️ {% translate 'WARNING: Multiple Databases Will Be Permanently Deleted' %}

{% translate 'You are about to delete multiple database tenants.' %}

{% blocktranslate with count=total_count %}{{ count }} tenants selected for deletion{% endblocktranslate %}

{% translate 'The following databases will be DELETED:' %}

    {% for tenant in tenants %}
  • {{ tenant.name }} ({{ tenant.slug }})
    Database: {{ tenant.get_connection_string|default:"unknown"|cut:"/"|last }}
  • {% endfor %}

{% translate 'All data in these databases will be permanently lost.' %}

{% translate 'This action cannot be undone. The databases and all their data will be permanently removed from the PostgreSQL server.' %}

{% csrf_token %} {# Preserve selected tenant IDs #} {% for tenant in tenants %} {% endfor %}

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

{% translate 'To confirm deletion of all selected tenants, please type:' %} {{ expected_confirmation }}

{% endblock %}