{% extends "admin_base.html" %} {% load static %} {% block title %}Tenant Management{% endblock %} {% block page_title %}Tenant Management{% endblock %} {% block page_description %}Manage all tenant organizations in the system{% endblock %} {% block content %}

{{ total_tenants|default:0 }}

Total Tenants

{{ active_tenants|default:0 }}

Active

{{ trial_tenants|default:0 }}

Trial

{{ expired_tenants|default:0 }}

Expired

All Tenants
{{ page_obj.paginator.count }} total
{% for tenant in page_obj %} {% empty %} {% endfor %}
Organization Tenant Code Owner Plan Status Days Remaining Created Actions
{{ tenant.name.0|upper }}
{{ tenant.name }}
{{ tenant.contact_email }}
{{ tenant.tenant_code }}
{{ tenant.owner.get_full_name|default:tenant.owner.username }}
{{ tenant.owner.email }}
{{ tenant.get_plan_display }} {{ tenant.get_status_display }} {% if tenant.days_remaining > 0 %} {{ tenant.days_remaining }} days {% else %} Expired {% endif %} {{ tenant.created_at|date:"M d, Y" }}
No tenants found

No tenants match your current filters.

Create First Tenant
{% if page_obj.has_other_pages %} {% endif %}
0 tenants selected
{% endblock %} {% block extra_js %} {% endblock %}