{% extends 'base.html' %} {% block title %}Dashboard — {{ org.name }}{% endblock %} {% block extra_head %} {% endblock %} {% block content %}

Dashboard

{{ org.name }} — {{ org.get_sector_display }}

{% if org.uidai_setup_done %} {% else %} Complete UIDAI Setup {% endif %}
{% if org.is_trial and not org.trial_expired %} {% if trial_days_left <= 3 %}
⚠️ Trial ending soon: Only {{ trial_days_left }} day{{ trial_days_left|pluralize }} remaining. Upgrade Now
{% elif trial_days_left <= 7 %}
Free Trial: {{ trial_days_left }} days remaining. View Plans
{% else %}
Free Trial Active: {{ trial_days_left }} days remaining. View Plans →
{% endif %} {% endif %} {% if not org.uidai_setup_done %}
⚠️ UIDAI setup is incomplete. Complete setup to start verifying visitors.
{% endif %} {% if remaining == 0 %}
Monthly verification limit reached. Upgrade your plan to continue.
{% elif remaining < 20 %}
⚠️ Only {{ remaining }} verification{{ remaining|pluralize }} left this month. Upgrade
{% endif %}
{{ total_visitors }}
Total Visitors
{{ today_visitors }}
Today
{{ remaining }}
Verif. Left
{{ org.get_plan_display }}
Current Plan
{{ present_today }}
Present Today
{{ total_students }}
Total Students
₹{{ fees_collected_total }}
Fees Collected (This Month)
Daily Visitors
Visitor Records
Reset {% if can_export %} Export Excel {% else %} Export (Upgrade Required) {% endif %}
{% if from_date or to_date %}
Filtered: {% if from_date %}{{ from_date }}{% endif %} {% if from_date and to_date %} to {% endif %} {% if to_date %}{{ to_date }}{% endif %} — {{ visitors|length }} record(s)
{% endif %}
{% for v in visitors %} {% empty %} {% endfor %}
# Name DOB Gender Address Other Info Time
{{ forloop.counter }} {{ v.name }} {{ v.dob|default:"—" }} {{ v.gender|default:"—" }} {{ v.address|truncatechars:45|default:"—" }} {% for key, value in v.extra_data.items %} {% if key == 'residentImage' %} Photo {% else %}
{{ key }}: {{ value }}
{% endif %} {% empty %} — {% endfor %}
{{ v.created_at|date:"d M Y H:i" }}
{% if from_date or to_date %} No visitors found in this date range. {% else %} No visitors yet. Click "Verify Visitor" to get started. {% endif %}
{% endblock %} {% block extra_js %} {% endblock %}