{% extends "admin/base_site.html" %} {% load i18n admin_urls %} {% block content %}

Model Counts for {{ organization.name }}

Organization ID: {{ organization.id }}

These are the Postgres models that would be deleted during organization bulk-delete.

{% for item in counts %} {% endfor %}
Model Count
{{ item.name }} {% if item.persons_db %} Persons database — count unavailable {% elif item.count is not None %} {{ item.count|default:0 }} {% else %} - {% endif %}
Total Records (default database only) {{ total|default:0 }}
{% if has_persons_db_models %}

Some models live in the persons database and cannot be counted from this admin view. These models will still be deleted as part of organization deletion.

{% endif %}

← Back to Organization

{% endblock %}