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

This is the interactive deposit flow. Please enter the amount you would like to deposit.


{% csrf_token %} {% for field in form %}
{{ field }}
{% if field.errors %}

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

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