{% extends 'web/admin/base.html' %} {% block admin_title %}Online customers{% endblock %} {% block admin_subtitle %}Registered accounts (role: customer){% endblock %} {% block admin_content %}
Customer accounts
Newest first · showing up to 100
{{ online_customers_count }} total
{% for u in online_customers %} {% else %} {% endfor %}
# Username Email Phone Joined
{{ u.id }} {{ u.username }} {{ u.email }} {{ u.phone or '—' }} {{ u.created_at.strftime('%d %b %Y') if u.created_at else '—' }}
No customer accounts yet.
{% endblock %}