{% extends 'base.html' %} {% block title %}Super Admin — Avighna{% endblock %} {% block content %}

Super Admin Panel

All clients and platform overview

⚙️ OVSE / Platform Settings
{{ total_orgs }}
Total Clients
{{ active_orgs }}
Active
{{ trial_orgs }}
On Trial
{{ expired_orgs }}
Trial Expired
{{ paid_orgs }}
Paid Clients
{{ total_verifs }}
Total Verif.
All Clients
{% for org in orgs %} {% empty %} {% endfor %}
# Organisation Sector Plan Trial Verifications UIDAI Status Joined Actions
{{ forloop.counter }} {{ org.name }}
{{ org.slug }}.{{ MAIN_DOMAIN }}
{{ org.get_sector_display }} {{ org.get_plan_display }} {% if org.is_trial and not org.trial_expired %} {{ org.trial_days_remaining }} days left {% elif org.trial_expired %} Expired {% else %} Paid {% endif %} {{ org.verif_count }} {% if org.uidai_setup_done %} Done {% else %} Pending {% endif %} {% if org.is_active %} Active {% else %} Inactive {% endif %} {{ org.created_at|date:"d M Y" }} {% if org.is_active %}Deactivate{% else %}Activate{% endif %} {% if org.is_trial or org.trial_expired %} +15 Days {% endif %}
{% csrf_token %}
No clients yet.
{% endblock %}