{% extends 'accounts/base.html' %} {% load static %} {% block title %}Dashboard - Accounts{% endblock %} {% block breadcrumb_items %} {% endblock %} {% block page_title %}Dashboard{% endblock %} {% block page_actions %}
Add User Manage Roles
{% endblock %} {% block content %}
Total Users
{{ stats.total_users }}
Active Users
{{ stats.active_users }}
New This Month
{{ stats.new_users_month }}
Pending Verification
{{ stats.pending_verification }}
User Registration Trends
User Roles Distribution
{% for role in role_stats %} {{ role.name }} {% endfor %}
Recent Users
{% for user in recent_users %} {% empty %} {% endfor %}
User Role Joined Status
{% if user.avatar %} Avatar {% else %}
{{ user.first_name|first|upper }}{{ user.last_name|first|upper }}
{% endif %}
{{ user.full_name }}
{{ user.email }}
{% for role in user.user_roles.all %} {{ role.role.name }} {% empty %} No Role {% endfor %} {{ user.created_at|date:"M d, Y" }} {% if user.is_active %} {% if user.email_verified %} Active {% else %} Pending {% endif %} {% else %} Inactive {% endif %}
No recent users
Quick Actions
System Health
Active Users: {{ system_health.active_percentage|default:0 }}%
Verified: {{ system_health.verified_percentage|default:0 }}%
With Roles: {{ system_health.role_assigned_percentage|default:0 }}%
Recent Activity
View All
{% for activity in recent_activities %} {% empty %} {% endfor %}
Activity User Time Status
{{ activity.description }} {{ activity.user.full_name|default:activity.user.email }} {{ activity.timestamp|timesince }} ago {% if activity.success %} Success {% else %} Failed {% endif %}
No recent activity
{% endblock %} {% block extra_js %} {% endblock %}