Comprehension Check
Please answer the following 3 questions to confirm your understanding of the instructions.
You can review the instructions at anytime by clicking the "Instructions" button below.
{% for field in form %}
{% if field.name not in hidden_fields %}
{{ formfield field.name }}
{% endif %}
{% endfor %}
{% for field in form %}
{% if field.name in hidden_fields %}
{{ formfield field.name }}
{% endif %}
{% endfor %}
{{ include C.Instructions_general_path }}
{{ endblock }}