{% extends 'web/admin/base.html' %} {% block admin_title %}Online customers{% endblock %} {% block admin_subtitle %}Registered accounts (role: customer){% endblock %} {% block admin_content %}
| # | Username | 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. | ||||