{% extends "base.html" %} {% block "title" %} Interactive Withdraw Info Form {% endblock %} {% block "content" %}

This is the interactive Withdraw flow. Please enter the amount you would like to withdraw and the bank account number, and choose a bank for withdrawal.


{% csrf_token %} {% for field in form %}
{% if field.name == 'amount' %}
{{ field }}
{% else %}
{{ field }}
{% endif %} {% if field.errors %}

{% for error in field.errors %} {{ error }} {% endfor %}

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