{% extends 'base.html' %} {% load static %} {% block title %}Manage Users - Admin Panel - AIBOTXCHANGE{% endblock %} {% block content %}

Manage Users

View and manage all registered users

Back to Dashboard
{% if search %} Clear {% endif %}

All Users

{% for user in users %} {% empty %} {% endfor %}
User Email Status Joined Last Login Actions
{{ user.first_name|first|default:user.username|first }}
{{ user.get_full_name|default:user.username }}
ID: {{ user.id }}
{{ user.email|default:"Not provided" }}
{% if user.is_active %}Active{% else %}Inactive{% endif %} {{ user.date_joined|date:"M d, Y" }} {{ user.last_login|date:"M d, Y"|default:"Never" }}
{% if search %} No users found matching "{{ search }}" {% else %} No users found {% endif %}
{% if is_paginated %}
Showing {{ users.start_index }} to {{ users.end_index }} of {{ users.paginator.count }} users
{% if users.has_previous %} Previous {% endif %} Page {{ users.number }} of {{ users.paginator.num_pages }} {% if users.has_next %} Next {% endif %}
{% endif %}
{{ users.paginator.count|default:0 }}
Total Users
{{ active_users_count|default:0 }}
Active Users
{{ new_users_today|default:0 }}
New Today
{{ users_with_subscriptions|default:0 }}
With Subscriptions
{% endblock %}