{% extends 'adminpanel/base.html' %} {% load static %} {% block title %}Crypto Wallets · Admin Dashboard{% endblock %} {% block content %}

Crypto Wallets

Manage cryptocurrency wallet addresses for investor deposits

Total Wallets

{{ stats.total_wallets }}

Active Wallets

{{ stats.active_wallets }}

Crypto Types

{{ stats.crypto_types }}

{% for wallet in wallets %} {% empty %} {% endfor %}
Cryptocurrency Wallet Address Label Network Min. Deposit Status Actions
{{ wallet.crypto_type }}
{{ wallet.get_crypto_type_display }}
{{ wallet.short_address }}
{{ wallet.label|default:"—" }} {{ wallet.network|default:"—" }} {{ wallet.minimum_deposit }} {% if wallet.is_active %} Active {% else %} Inactive {% endif %}
{% csrf_token %}
{% csrf_token %}

No crypto wallets configured

Add your first wallet to start accepting cryptocurrency deposits

{% endblock %}