{% extends "base.html" %} {% block title %}User Search - Admin Dashboard - {{ project_name }}{% endblock %} {% block content %}

User Search

Search and manage system users

{% if query %}

Search Results

Found {{ total_count }} user{{ total_count|pluralize }} matching "{{ query }}"

{% if total_count > 0 %}
{% for user in users %} {% endfor %}
Email Name Staff Active Date Joined Actions
{{ user.email }} {% if user.first_name or user.last_name %} {{ user.first_name }} {{ user.last_name }} {% else %} No name set {% endif %} {% if user.is_staff %} Staff {% else %} User {% endif %} {% if user.is_active %} Active {% else %} Inactive {% endif %} {{ user.date_joined|date:"M d, Y" }} View
{% if users.has_other_pages %} {% endif %} {% else %}

No users found matching your search criteria.

{% endif %}
{% else %}

Search for Users

Enter an email address, first name, or last name to search for users.

{% endif %}
{% endblock %}