{% extends "core/dashboard/base.html" %} {% load static %} {% load humanize %} {% block content %}

Welcome Back, {{ request.user }}

Total Market Value

${{ total_market_value|intcomma }}

USD

Total Asset Value

${{ total_assest_value|intcomma }}

USD

CryptoPro Deposit

${{ crypto_pro|intcomma }}

USD

CryptoPro Profit

${{ crypto_pro_profit|intcomma }}

USD

All In One Deposit

${{ all_in_one|intcomma }}

USD

All In One Profit

${{ all_in_one_profit|intcomma }}

USD

Stock Trader Deposit

${{ stock_trader|intcomma }}

USD

Stock Trader Profit

${{ stock_trader_profit|intcomma }}

USD

Bonus

${{ bonus|intcomma }}

USD

Total Market Value : ${{ total_market_value }}

{% if my_investment.investment_type == 'crypto_pro' %}
Bitcoin (24h)

Loading...

Ethereum (24h)

Loading...

USDT (24h)

Loading...

{% elif my_investment.investment_type == 'stock_trader' %}
{% else %}
Bitcoin (24h)

Loading...

Ethereum (24h)

Loading...

USDT (24h)

Loading...

{% endif %}

Deposit

{% csrf_token %}


copy wallet address


Please enter the desired amount and select a wallet from the options provided. After completing the payment to the designated wallet address, kindly submit the form. Upon successful submission, the status will be updated to 'Paid

Transaction

    {% for transaction in transactions %}
  • {% if transaction.transaction_type == "DEPOSIT" %} {% elif transaction_type == "WITHDRAW" %} {% endif %}

    {{ transaction.time }}

    {{ transaction.tid }}

    {{ transaction.amount }}

  • {% endfor %}
{% endblock content %} {% block script %} {% endblock script %}