{% extends "./base.html" %} {% load i18n %} {% block "title" %} {% if title %} {{ title|safe }} {% else %} {% trans "Interactive Deposit Info Form" %} {% endif %} {% endblock %} {% block "content" %}
{% if guidance %}
{{ guidance|safe }}
{% else %}
{% trans "Please fill out the fields below." %}
{% endif %} {% if form is not None %}
{% csrf_token %} {% for field in form %}
{% if field.errors %}

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

{% endif %}
{% endfor %}
{% else %}

{% endif %}
{% endblock %}