{% for question in form.questions %}
{% if question.type == "short" %} {% elif question.type == "long" %} {% elif question.type == "multiple" %} {% for option in question.options %}
{% endfor %} {% elif question.type == "multiple_unique" %} {% for option in question.options %}
{% endfor %} {% elif question.type == "dropdown" %} {% elif question.type == "date" %} {% elif question.type == "datetime" %} {% else %} {% endif %}
{% endfor %}