{% extends "site_base.html" %} {% load bootstrap_tags %} {% load compress %} {% load static %} {% load i18n %} {% load boxes_tags %} {% block head_title %}{% if applying %}{% trans "Apply for Financial Aid" %}{% else %}{% trans "Edit Financial Aid Application" %}{% endif %}{% endblock %} {% block body_id %}finaid_apply{% endblock %} {% block page_title %}Financial Aid Application{% endblock %} {% block body %} {% box "finaid-apply" %} {% if form.errors %}

{% trans "There were errors in your form, please correct them and submit again." %}

{% endif %}
{% csrf_token %} {% if applying %}{% trans "Apply for Financial Aid" %}{% else %}{% trans "Edit Financial Aid Application" %}{% endif %} {% if form.errors and not form.non_field_errors %}
{% blocktrans count counter=form.errors.items|length %}Please correct the error below.{% plural %}Please correct the errors below.{% endblocktrans %}
{% endif %} {{ form|as_bootstrap }}
{% endblock %}