{% extends 'adminpanel/base.html' %} {% block title %}Users ยท Admin Dashboard{% endblock %} {% block page_title %}Users{% endblock %} {% block content %}
Total Users
{{ stats.total|default:0 }}
Investors
{{ stats.investors|default:0 }}
Traders
{{ stats.traders|default:0 }}
Verified
{{ stats.verified|default:0 }}

Latest Users

๐Ÿ” Search Users
{% for u in latest_users %} {% empty %} {% endfor %}
Email Username Role Status Joined Actions
{{ u.email }} {{ u.username }} {{ u.get_role_display }}
{% if u.verified %} โœ“ Verified {% else %} Not Verified {% endif %} {% if not u.is_active %} Inactive {% endif %}
{{ u.date_joined|date:'Y-m-d H:i' }} View Details โ†’
No users yet.
{% endblock %}