{% extends 'main/base.html' %} {% load i18n %} {% block title %}{% trans "Withdrawal" %} - ODEON{% endblock %} {% block top_icon %} 👤 {% endblock %} {% block content %}
{% include 'main/_subheader.html' with title=_("Withdrawal") back="/personal/" %} {% if error %}
{{ error }}
{% endif %} {% if withdraw_locked %}

🔒 {% trans "Withdrawal locked" %}

{{ withdraw_lock_reason }}

{% elif not progress.can_withdraw %}

🔒 {% trans "Commission locked" %}

{% blocktrans with sets=progress.required_sets total=progress.required_tickets %}Complete {{ sets }} sets ({{ total }} rated movies) to unlock withdrawals.{% endblocktrans %}

{{ progress.completed_capped }} / {{ progress.required_tickets }} — {{ progress.remaining }} {% trans "more to go" %}. {% trans "Go to tasks ›" %}

{% endif %}
{% csrf_token %}

{% trans "Withdrawal method" %}

{% for m in methods %} {% endfor %}

{% trans "Withdrawal address" %}

{% trans "Withdrawal Amount" %}

€
{% trans "Service charge" %} €{{ service_charge|floatformat:2 }}
{% trans "Actual Amount Received" %} €0.00
{% trans "Balance" %} {{ balance }}
{% trans "Minimum Withdrawal" %} €{{ min_withdrawal }}.00
{% if has_pin %}

{% trans "Withdrawal PIN" %}

{% else %}
{% trans "You need a withdrawal PIN to withdraw." %} {% trans "Set your PIN ›" %}
{% endif %} {% if progress.can_withdraw %} {% else %} {% endif %}

{% trans "Tips:" %}

{% trans "Withdrawals are reviewed and approved by an administrator before payout. Make sure your selected method has a bound wallet address. Withdrawals under €20,000 incur no fees." %}

{% endblock %}