{% extends "main_aside.html" %} {% load i18n %} {% load assets %} {% block title %}{% trans "Student information" %}{% endblock %} {% block main_content %}
{% csrf_token %}

{% trans "Student information" %}

{% with fieldset=form.fieldsets.part_one %} {% for field in fieldset %}
{% if field.is_hidden %} {{ field }} {% else %} {{ field }} {% if field.errors %}{{ field.errors }}{% endif %} {% endif %}
{% endfor %} {% endwith %}
{{ funding_inlines.management_form }} {% for form in funding_inlines %} {% for field in form.visible_fields %} {% endfor %} {% endfor %}
Name of Funder Items Funded Amount of Funding Delete
{{ field }} {{ field.errors }} {% if forloop.last %} {% for hidden in form.hidden_fields %} {{ hidden }} {% endfor %} {% endif %}
{% with fieldset=form.fieldsets.part_two %} {% for field in fieldset %}
{% if field.is_hidden %} {{ field }} {% else %} {{ field }} {% if field.errors %}{{ field.errors }}{% endif %} {% endif %}
{% endfor %} {% endwith %}
{% with fieldset=form.fieldsets.hidden %} {% for field in fieldset %} {{ field }} {% endfor %} {% endwith %}
{% trans "Go back" %}
{% endblock %} {% block page_bottom %} {% assets "widget_js_all" %} {% endassets %} {% endblock %}