{% extends "admin/base.html" %} {% block page_title %}👥 مدیریت کاربران{% endblock %} {% block content %}
{% for u in users %} {% endfor %}
ID{{ t('email') }}{{ t('username') }}نقش {{ t('status') }} {{ t('wallet') }} (ورودی) {{ t('wallet') }} (خروجی) تاریخ عضویت{{ t('action') }}
#{{ u.id }} {{ u.email }} {{ u.username }} {{ u.role.name if u.role else '—' }} {{ 'فعال' if u.is_active else 'غیرفعال' }} {% set w = u.wallets|selectattr('kind','equalto','deposit')|first %} {{ "%.2f"|format(w.balance if w else 0) }} USDT {% set pw = u.wallets|selectattr('kind','equalto','payout')|first %} {{ "%.2f"|format(pw.balance if pw else 0) }} USDT {{ u.created_at.strftime('%Y-%m-%d') }}
{% endblock %}