{% extends 'main/base.html' %} {% load i18n %} {% block title %}{% trans "Deposit" %} - ODEON{% endblock %} {% block content %}
{% include 'main/_subheader.html' with title=_("Deposit") back="/wallet/" %}

{% trans "Account balance" %}

{{ balance }}

{% if wallet %}

{% trans "Wallet Address" %} · {{ wallet.network_label }}

{{ wallet.address }}

{% else %} {% trans "Bind a wallet address to your account" %} › {% endif %} {% if error %}
{{ error }}
{% endif %}
{% csrf_token %}

{% trans "Please Select A Deposit Method:" %}

{% for method in payment_methods %} {% endfor %}

{% trans "Deposit Amount" %}

{% for q in quick_amounts %} {% endfor %}

{% trans "Deposit description" %}

{% trans "Select a deposit method and enter the amount you wish to top up. Once submitted, your deposit will be processed and reflected in your account balance." %}

{% endblock %}