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

Please fill out the fields below.


{% 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 %}