{% extends "base.html" %} {% block title %}کاربر #{{ user.id }}{% endblock %} {% block content %}
| شناسه | {{ user.id }} |
| نام کاربری | {{ '@' + user.username if user.username else '-' }} |
| نام | {{ user.first_name or '-' }} |
| موجودی | {{ "{:,.0f}".format(user.balance) }} {{ symbol }} |
| تاریخ عضویت | {{ user.created_at }} |
| وضعیت | {% if user.is_banned %} مسدود {% else %} فعال {% endif %} |
| # | ایمیل | تاریخ انقضا | وضعیت |
|---|---|---|---|
| {{ c.id }} | {{ c.email }} |
{{ c.expire_date[:10] if c.expire_date else '-' }} | {% if c.is_active %} فعال {% else %} منقضی شده {% endif %} |
کانفیگی یافت نشد.
{% endif %}