{% extends 'adminpanel/base.html' %} {% block title %}User: {{ user_obj.email }} ยท Admin Panel{% endblock %} {% block content %}
โ† Back to Users

User Details

{% if not user_obj.verified %}
{% csrf_token %}
{% else %}
{% csrf_token %}
{% endif %}
{% csrf_token %}

Basic Information

Email
{{ user_obj.email }}
Username
{{ user_obj.username }}
Full Name
{{ user_obj.first_name }} {{ user_obj.last_name }}
Phone
{{ user_obj.phone_number|default:"Not provided" }}
Country
{{ user_obj.country|default:"Not provided" }}
Joined
{{ user_obj.date_joined|date:"Y-m-d H:i" }}

Status & Permissions

Role
{{ user_obj.get_role_display }}
{% csrf_token %}
Account Status
{% if user_obj.is_active %} โœ“ Active {% else %} โœ— Inactive {% endif %}
Verification Status
{% if user_obj.verified %} โœ“ Verified {% else %} โš  Not Verified {% endif %}
Superuser
{% if user_obj.is_superuser %} โœ“ Yes {% else %} No {% endif %}
Onboarding
{% if user_obj.is_onboarding_complete %} โœ“ Completed {% else %} โš  Incomplete {% endif %}
{% if account %}

Account Balance

View Full Account โ†’
Capital
${{ account.capital_balance|default:"0.00" }}
Profit
${{ account.profit_balance|default:"0.00" }}
Bonus
${{ account.bonus_balance|default:"0.00" }}
{% endif %}

Transaction Statistics

Total Deposits
${{ txn_stats.total_deposits|default:"0.00" }}
Total Withdrawals
${{ txn_stats.total_withdrawals|default:"0.00" }}
Pending
{{ txn_stats.pending_count|default:0 }}

Recent Transactions

{% for txn in transactions %} {% empty %} {% endfor %}
Date Category Amount Status
{{ txn.created_at|date:"Y-m-d H:i" }} {{ txn.get_category_display }} ${{ txn.amount }} {{ txn.get_status_display }}
No transactions yet
{% if not user_obj.is_superuser %}

โš ๏ธ Danger Zone

Deactivating this user will prevent them from logging in and accessing their account.

{% csrf_token %}
{% endif %} {% endblock %}