{% extends 'base.html' %} {% block title %}Manage Users — Admin{% endblock %} {% block content %}
Admin Portal

Manage Users

+ Register B2B Picker ← Back to portal
{% if pending_picker_count %}
{{ pending_picker_count }} picker account{{ pending_picker_count|pluralize }} awaiting approval.

Unapproved pickers can sign in but won't appear to customers or be able to go available until approved.

{% endif %}
{% if role_filter == 'picker' %} {% endif %}
{% for u in users %} {% empty %} {% endfor %}
Name Email Role Status Picker approval Actions
{{ u.first_name }} {{ u.last_name }} {{ u.email }} {{ u.role|title }} {% if u.customer_profile %}
{% if u.customer_profile.account_type == 'b2b' %}Business{% else %}Individual{% endif %}{% endif %} {% if u.picker_profile %} {% if u.picker_profile.picker_segment == 'b2b' %}
B2B · {{ u.picker_profile.truck_type.icon }} {{ u.picker_profile.truck_type.name|default:"No truck set" }} {% else %}
B2C {% endif %} {% endif %}
{% if u.is_active %} Active {% else %} Suspended {% endif %} {% if u.picker_profile %} {% if u.picker_profile.is_approved %} Approved {% else %} Pending {% endif %} {% else %} — {% endif %} Edit {% if u.picker_profile and not u.picker_profile.is_approved %}
{% csrf_token %}
{% endif %} {% if u.role != 'admin' %}
{% csrf_token %}
{% csrf_token %}
{% endif %}
No users found.
{% endblock %}