{% extends 'main/base.html' %} {% load i18n %} {% block title %}{% trans "Bind wallet address" %} - ODEON{% endblock %} {% block top_icon %} 👤 {% endblock %} {% block content %}
{% if form_method %} {% include 'main/_subheader.html' with title=_("Bind wallet address") back="/bind-wallet/" %} {% else %} {% include 'main/_subheader.html' with title=_("Bind wallet address") back="/personal/" %} {% endif %} {% if form_method %} {% if error %}
{{ error }}
{% endif %} {% if is_bank %} {# --- Detailed bank / Revolut binding form --- #}
{% csrf_token %}
{% if form_method.id == 'revolut' %}
{% endif %}
{% else %} {# --- Address-entry form for one selected crypto method --- #}
{% csrf_token %}

{{ form_method.label }}

{% trans "Make sure the address matches the selected network. Funds sent to a wrong address or network cannot be recovered." %}

{% endif %} {% else %} {# --- Account selection list --- #}

{% trans "Please select a bank account" %}

{% for m in methods %}
{% if m.id == 'iban' %}🏦{% else %}{{ m.icon }}{% endif %}
{{ m.label }} {% if m.bound %} {{ m.masked }} {% else %} {% endif %}
{% endfor %} {# IBAN highlighted card #}

{% trans "IBAN" %}

{% if iban %}

{{ iban.address }}

{% else %}

{% trans "Tap to add your IBAN" %} ›

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